Store a continuous ndarray in a level database - using either levelup with Node or level.js in the browser.
Example incoming in the topdown-physics demo.
npm install continuous-storage
Creates a store instance for your database and continuous array:
-
db
is a level database. -
field
is the continuous ndarray you want to store.
With the following options:
-
options.index
is a function which maps a position array to a string key for each chunk in the database. Defaults toposition.join(':')
.
Saves all of the currently instantiated chunks to the database.
Saves a chunk to the database.