Open CSDUMMI opened 2 years ago
I would recommend removing orbit-db-storage-adapter and passing the leveldb directly into the modules that require it.
When implemented,orbit-db-storage-adapter was designed to abstract away the "up/down" design of level. Originally, level was designed to be completely modular; underlying database bindings, encapsulated in "down" modules, were passed to levelup, a high level wrapper which provided a common API no matter what underlying data storage mechanism was used.
As the platform matured, the modular nature of levelup + leveldown produced potential pitfalls and resulted in a move to a bundled approach where a single database implementation was bundled with all of necessary pieces. Instead of a modular design, the latest version of level uses a bundled design whereby everything works out of the box for a targeted database type.
What was once levelup/leveldown is now bundled into a single module. For example, classic-level provides a full stack for node-based leveldb. browser-level for browser support. memory-level for memory-based dbs and so on. All db stacks inherit from abstract-level, which provides a common api for implementing a full stack targeted for a particular database binding. There is even a default "Level" module which provides both classic-level and browser-level implementations in a single package, removing the need to manage databases for either node or browser.
Because each database binding is encapsulated in a full stack inheriting from abstract-level, there is no longer a need (or the ability to pass any database binding (I.e. *down) to a single levelup. Instead, a developer should use the database stack.
What once was:
import leveldown from 'leveldown'
import leveljs from 'level-js'
import levelup from 'levelup'
var down = leveldown('mydb')
var js = leveljs('mydb')
var nodeDb = levelup(down)
var browserDb = levelup(js)
is now:
import { ClassicLevel } from 'classic-level'
import { BrowserLevel } from 'browser-level'
var nodeDb = new ClassicLevel('mydb')
var browserDb = new BrowserLevel('mydb')
Additionally, the former is now deprecated meaning it will be removed from newer versions.
When levelup was used to implement an underlying "down" binding, it made sense to provide an additional layer of abstraction. For example,
import leveldown from 'leveldown'
import Storage from 'orbit-db-storage-adapter'
var storage = Storage(down)
var storage = storage.createStore('mydb')
However, now that an entire stack handles all of the levelup/leveldown interaction, orbit-db-storage-adapter now serves no purpose. In fact, it accomplishes the same outcome as any abstract-level based package does, resulting in a duplication of the work done by the abstract-level packages and making its role redundant.
Instead, orbit-db-storage-adapter should be retired and any module implementing orbit-db-storage-adapter should instantiate the database directly using the necessary stack; classic-level, browser-level, memory-level, etc. This would also remove a lot of the conditionals which are required to address the various idiosyncrasies between database implementations (for example, checking if a db path is necessary, as it would be required for ClassicLevel but not for MemoryLevel).
new Level
is now being used. Most orbit-db modules using level have been upgraded to version 8 and are simply wrapping the full stack in levelup, effectively resulting in levelup + (levelup + leveldown)
All of these packages directly depend on level in orbitdb (add more, if known):
orbit-db-keystore
orbit-db-cache
orbit-db-storage-adapter
All of them use an old version of level (<8.0.0). Because v8.0.0 changes the API for interacting with level, all of these packages must be refactored to be upgraded any further.
But this work that should not actually be necessary, because all orbit-db-* packages should only interact with level through orbit-db-storage-adapter.
There are two TODOs:
orbit-db-storage-adapter
instead oflevel
directly.orbit-db-storage-adapter
to use the newest version oflevel
(v8.0.0)Link to the UPGRADING Guide by level