What is the access time in MultiChain? [closed]

+2 votes
If I use a MultiChain blockchain to store hashes, what is the time access time to lookup hashes in the blockchain? Is it O(n) or O(log(n)) for example?

Is there any literature on this?
closed with the note: Answered
asked Jan 20, 2017 by anonymous
closed Jan 20, 2017

1 Answer

+2 votes
 
Best answer
Assuming you use streams, and put the hash in the key of stream items, then lookup time (as inherited from LevelDB) is O(log n).
answered Jan 20, 2017 by MultiChain
...