Coder Social home page Coder Social logo

Comments (2)

rwynn avatar rwynn commented on May 27, 2024

@zph, thanks for adding this. At some point I realized that it would be possible for 2 or more updates on the same _id to be included in a single batch. My original concern was that the Data would be nil on all but one of them. I will also fix the concurrency issue where the Data is shared in memory between the ops.

from gtm.

rwynn avatar rwynn commented on May 27, 2024

@zph, recently I added an optimization to gtm with regard to updates. Previously, all updates (when not using UpdateDataAsDelta) would go through the fetch path where the corresponding data would be retrieved and set on the op. Now, gtm distinguishes between different types of updates. Some updates replace the entire document and thus the oplog gets a full copy of the data. This is the case that was optimized to not cause a fetch but rather to simply use the data in the oplog. Other updates that use $set, $unset, $addToSet, etc are recorded in the oplog as $set and $unset deltas. In this case gtm will still use the fetch approach to get the full data.

In summary, updates like

db.test.update({_id: 1}, {foo: 2})

do less work now in gtm, where updates like

db.test.update({_id: 1}, {$set: {foo: 2}});

do the same amount of work as before this commit.

from gtm.

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.