diff options
author | Piotr Szarmanski | 2022-12-30 09:00:15 +0100 |
---|---|---|
committer | Piotr Szarmanski | 2022-12-30 09:00:15 +0100 |
commit | 855e79b7ffa37ac64de51defa18104ed897576b3 (patch) | |
tree | a5dea5b592e40c20308d428e489bc57eb3c7cdda /src/hash-backend.lisp | |
parent | 618ee634557122b3b3c5012405603b28c0001d13 (diff) |
Initial buffer reuse encoding commit
Diffstat (limited to 'src/hash-backend.lisp')
-rw-r--r-- | src/hash-backend.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/hash-backend.lisp b/src/hash-backend.lisp index 91dc673..c44c2d0 100644 --- a/src/hash-backend.lisp +++ b/src/hash-backend.lisp @@ -32,9 +32,10 @@ output-function (lambda (block reference) (declare (type octet-vector block reference)) (setf (gethash reference hash-table) - block)))))) + block) + block))))) -(defmethod fetch-read-capability (read-capability (backend hash-backend) &key &allow-other-keys) +(defmethod fetch-data (read-capability (backend hash-backend) &key &allow-other-keys) (declare (type read-capability read-capability)) (with-slots (fetch-function) backend (eris-decode read-capability fetch-function :cache-capacity nil))) |