diff options
author | Piotr Szarmanski | 2022-12-30 18:29:24 +0100 |
---|---|---|
committer | Piotr Szarmanski | 2022-12-30 18:29:24 +0100 |
commit | 5afc44c1082ae7088511f318aa9bd3d4b25ba3c6 (patch) | |
tree | d4a30ac582f98b77a79a164d40f9a7e794e1c6b4 /tests/backend-tests.lisp | |
parent | 855e79b7ffa37ac64de51defa18104ed897576b3 (diff) |
Implement buffer reuse encoding.
This implements a buffer reuse mechanism in eris-encode. This is also a
backwards incompatible change, as the provided OUTPUT-FUNCTION now has an
additional argument and has to return an octet-vector buffer of equal size. This
is not yet implemented optimally, but should amount to a reduce of memory usage
and GC required, especially for larger files.
Diffstat (limited to 'tests/backend-tests.lisp')
-rw-r--r-- | tests/backend-tests.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/backend-tests.lisp b/tests/backend-tests.lisp index 625740f..dc411d5 100644 --- a/tests/backend-tests.lisp +++ b/tests/backend-tests.lisp @@ -21,7 +21,7 @@ `(let ((backend (make-instance 'hash-backend)) (array ,array)) (is (equalp (alexandria:read-stream-content-into-byte-vector - (fetch-read-capability + (fetch-data (store-data array backend :block-size ,block-size :secret ,secret) backend)) array)))) @@ -49,7 +49,7 @@ (let* ((backend (make-instance 'file-backend :directory tmpdir)) (array ,array)) (is (equalp (alexandria:read-stream-content-into-byte-vector - (fetch-read-capability + (fetch-data (store-data array backend :secret ,secret) backend)) array))) (uiop:delete-directory-tree tmpdir :validate t)))) |