lmaccherone / node-localstorage

A drop-in substitute for the browser native localStorage API that runs on node.js.
MIT License
450 stars 36 forks source link

added several performance improvements #10

Closed sudheer594 closed 9 years ago

sudheer594 commented 9 years ago

Added a key value map to store the keys (encoded and original) and size of each file. SetItem and removeItem has been optimized by using the cache.No need to call init function for every insertion and deletion of key.

Let me know what do you think.

lmaccherone commented 9 years ago

Thanks. This is awesome!