orbit-db-docstore icon indicating copy to clipboard operation
orbit-db-docstore copied to clipboard

Document Store for orbit-db

Results 9 orbit-db-docstore issues
Sort by recently updated
recently updated
newest added

This implements an SET opcode for docstores. You specify a key, and edit parameters, so you can update certain values of a document. This could be useful for example if...

In the same spirit as: https://github.com/orbitdb/orbit-db-kvstore/pull/48 There was not the need for the optimisation on the `handled` object. So the optimisation gains will be less, but still this eliminates the...

what is the key that is mentioned in the docs putting the _id int db.del(_id) is not working basically how do is index and key the same thing and how...

Hello, Do you have sample of how to use orbit db in other language than javascript ? Like Kotlin or C#. Thanks

The readme describes `db.events.on('data', (dbname, event) => ... )` as a way to listen for new data entries/updates, but this event does not exist. Currently, it looks like you'd have...

I forgot to update the API documentation in the README ti reflect the changes in OrbitDB 0.19.x, so the API docs are outdated. Sorry. We should update them. Or perhaps...

bug

From @vasa-develop: Here is the [commit for b-tree with aviondb](https://github.com/dappkit/aviondb/commit/a308cf4791cd8d9117476b2a974708bab0f6f062) All the b-tree stuff is in the [src/CollectionIndex.js](https://github.com/dappkit/aviondb/blob/a308cf4791cd8d9117476b2a974708bab0f6f062/src/CollectionIndex.js) It's pretty basic. _Originally posted by @vasa-develop in https://github.com/orbitdb/orbit-db-docstore/pull/36#issuecomment-616261225_

After doing something like: `db.put({ _id: '12323', name: 'shamb0t', followers: 500 }).then((**hash**) => ...)` I can query by any index, and thats all right but is there also a way...

Currently docstore Index only keeps track of whether a docstore entry exists or not and the current value coinciding to it. There could be a toggle that turns on and...