trashman

Results 15 comments of trashman

nice work on that branch - loading is indeed MUCH faster. 💪💨 Also, I'm now considering whether it might be better to implement these changes inside an OrbitDB store, where...

From what I gathered, it appears that the Store will `join` the logs but the side effect will be the creation of another head.

Feeling like I need to get back in the game! I plan on coming back to this in the not so distant future.

Quick status update of what I think is left. Merge the following into ipfs-log master: - [x] https://github.com/orbitdb/benchmark-runner/pull/17 - [ ] https://github.com/orbitdb/benchmark-runner/issues/26 After these two I can dig deeper in...

hmm - I have since resolved the issue in an electron project by looking at the [ipfs-desktop](https://github.com/ipfs-shipyard/ipfs-desktop) implementation, which has `go-ipfs-dep` pinned at `0.4.23-3`. The only material changes I made...

First, you need to compare IPFS vs Dat — as OrbitDB is built on top of IPFS via [IPFS-log](https://github.com/orbitdb/ipfs-log). There are a few discussions scattered around the web on the...

I don't believe there is currently a way to limit replication. You may want to explore modeling your data differently (on `orbit-db` or even `ipfs`). Generally speaking, when modeling data...

If you have the tweets locally - you can limit how many entries are loaded by sending in an `amount` to `db.load(amount)`: ```javascript const db = await orbitdb.feed("

I was able to get orbit-db and ipfs working on mobile (react native) - tested via simulator. See steps [here](https://github.com/ipfs/js-ipfs/issues/1254#issuecomment-371512461). The only ipfs transport that worked for me was [websockets](https://github.com/libp2p/js-libp2p-websockets)...

I prefer **Alt 2** as of right now as it maintains user control and has less probability of introducing unwanted side effects. The side-effects of changing a rep outside of...