Code Monkey home page Code Monkey logo

Comments (5)

mitar avatar mitar commented on May 27, 2024

Why do you think this would optimize things? So which part would you like to optimize with this? Meteor already uses oplog internally.

from meteor-peerdb.

Sivli-Embir avatar Sivli-Embir commented on May 27, 2024

I read a while back that listening direct to Oblog was more memory efficient then Meteor's observes. I have no idea if that is still, or ever was, true. I tend not to get too close db side of meteor so I am not sure. Was just passing info along just incase you found it useful.

from meteor-peerdb.

mitar avatar mitar commented on May 27, 2024

Yes. It is very useful. So the question here is a trade-off.

What Meteor (and PeerDB uses that) is currently doing is keeping cache of documents and as oplog changes come in, they update that cache and call observe callbacks. So the question is, what happens if there are millions of documents and we are doing .find({}) observe on whole collection. Does Meteor cache all documents? Or does it have a limit and then if oplog change comes for a document which is not in the cache it fetches it and patches it and sends to observe callbacks?

The other option would be to not have any cache at all, use only oplog, and when we get notification, we use findOne to get a document and use it. So this is probably memory wise the best we can get, but then we will be calling findOne many times. Which is not necessary bad because whole PeerDB assumption is that there are not many writes (and many many more reads).

from meteor-peerdb.

Sivli-Embir avatar Sivli-Embir commented on May 27, 2024

Mind posting that on https://hub.kadira.io/? I think the only way we will know is if we test both cases at scale and that is exactly what that hub is all about.

from meteor-peerdb.

mitar avatar mitar commented on May 27, 2024

Posting what?

from meteor-peerdb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.