phillmac
phillmac
So the next thing to test is instead of simply awaiting load() which will return almost instantly when there is no replication history, resulting in all the dbs being queued...
Also, I'm assuming that you're using chrome, so definitely try firefox to see if this is a chrome specific bug.
`orbitdb.docs` Should be `orbitdb.open`
That's to be expected for that number of entries. Which store type are you using? If it's docstore perhaps you could look at using `putAll()` to reduce the round trip...
Yep. There's a few performace improvents in the pipline that _may_ improve this issue. For now that's pretty close to the best possible performance. Due to the simplistic way the...
Yup. You can 'drop' the database and delete the log entirely, if you need to keep some of the data you can create a fresh db
Most scaling techniques mean using some sort of sharding
The guarentee isn't that a node will recive the data in the same order, it is that two nodes will eventually have the same state regardless of the order they...
The id is not random, it's the hash of the manifest. You can name the database if you choose. See https://github.com/orbitdb/orbit-db/blob/master/API.md#orbitdbcreatename-type-options
My code looks something like this, I don't think there's any way I can trap this error. I'd be glad to be wrong and have it pointed out. ``` function...