todo
This commit is contained in:
parent
2bb46d046c
commit
cb50cdcc58
1 changed files with 10 additions and 0 deletions
10
doc/todo/speed_up_VURL_by_avoiding_redundant_hashing.mdwn
Normal file
10
doc/todo/speed_up_VURL_by_avoiding_redundant_hashing.mdwn
Normal file
|
@ -0,0 +1,10 @@
|
|||
When a VURL key has multiple equivilant keys that all use the same hash,
|
||||
verifying the VURL key currently has to verify each equivilant key.
|
||||
Usually that is done incrementally, so it only has to read the file once. But it
|
||||
still does redundant work, updating each incremental verifier with each
|
||||
chunk.
|
||||
|
||||
This could be improved by caclulating a hash once, and then compare it
|
||||
with a hash value exposed by the Backend. That seems doable but will mean
|
||||
extending the Backend interface, to expose the hash value and type.
|
||||
--[[Joey]]
|
Loading…
Reference in a new issue