GithubHelp home page GithubHelp logo

Comments (2)

jmikola avatar jmikola commented on July 3, 2024

The countDocuments method internally uses an aggregation pipeline, which is why $where is not permitted. If you'd like to continue using $where without changing your application, you can continue to use the deprecated count method. I'm not aware of any immediate plans for the server to remove that command, despite the API being deprecated in drivers. If you're curious about the reasoning behind this deprecation, see Count API Details in the MongoDB driver CRUD specification.

I can't find anything in the documentation regarding countDocuments having such limitations.

This is discussed in the Behavior section of the documentation for MongoDB\Collection::countDocuments(). To quote:

Since this method uses an aggregation pipeline, some query operators accepted within a MongoDB\Collection::count() filter cannot be used. Consider the following alternatives to these restricted operators:

Restricted Alternative Syntax
$where $expr

If I can't use countDocuments with a $where filter, what is the alternative?

The preferred solution would be to rewrite your $where criteria with $expr, so it can be executed within an aggregation context. The server manual's documentation for $where talks a bit about using $expr in an aggregation context as an alternative. If you need more help on that, please ask in MongoDB Developer Community Forums or Stack Overflow, as it's a more general MongoDB question beyond the scope of the PHP driver/library.

But per my earlier point, you can still continue to use the deprecated count() method if you'd rather not rewrite your query at this time.

from mongo-php-library.

 avatar commented on July 3, 2024

I'll try to rewrite my $where into $expr and see how far I go from there.

Thank you for the excellent explanation!

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.