GithubHelp home page GithubHelp logo

Comments (4)

jacqueswaller avatar jacqueswaller commented on July 19, 2024

I think the MongoDB\BSON\Javascript class is the equivalent though I haven't used it yet.

from mongo-php-library.

flashjay avatar flashjay commented on July 19, 2024

usage:

MongoDB\Database::command(['eval' =>"function() { return {$func}; }", 'args' => $args, 'nolock' => true])

from mongo-php-library.

jmikola avatar jmikola commented on July 19, 2024

As @jacqueswaller suggested, MongoDB\BSON\Javascript class is the new driver's equivalent for the legacy MongoCode class. @flashjay's example appears to work because the server happens to accept a string for the eval command; however, I'm not sure if other JavaScript commands (e.g. mapReduce) do the same. Either way, I would suggest using the Javascript class in your application so not to depend on any undocumented server behavior.

As for the code example in the original question, there is really no need for Javascript evaluation in that scenario. You will generally be much better off iterating on the blog posts in PHP and issuing multiple updates (via BulkWrite). Using the aggregation framework, you can do this in a two-step operation (i.e. two round trips to the server):

  1. Construct an aggregation pipeline to $group on the comments collection, using the blog ID as the bucket identifier ($id) and projecting a running count into a separate field (i.e. {$sum: 1}).
  2. Create a BulkWrite object and append updates for each aggregate result, setting the blog post's n field accordingly.

The above situation would only handle blog posts with at least one comment, so you may want to lead with a mass update on blog posts to set n to zero for all posts. Alternatively, you can lead with a separate query for all blog post IDs to collect them and diff against the aggregation results. For each post not in the aggregation results, you could then explicitly set it to zero.

from mongo-php-library.

Alsatian67 avatar Alsatian67 commented on July 19, 2024

@jmikola I just tried your method with aggregator, and it works fine.
Thank you very much for the explaination.

from mongo-php-library.

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.