Git Product home page Git Product logo

Comments (5)

arabcoders avatar arabcoders commented on June 3, 2024

i fixed it by changing

return $array === [] || is_numeric( array_keys($array)[0]);

to

return $array === [] || is_numeric( $array[ key( $array ) ] );

i could send in pull request if you want

from mongo-php-adapter.

alcaeus avatar alcaeus commented on June 3, 2024

This was previously reported as #100 but we couldn't track down what was causing it. Could you share a document that produces the error or the stack trace that accompanies it? That would help figure this out...

from mongo-php-adapter.

arabcoders avatar arabcoders commented on June 3, 2024

sadly there isn't anything in mongo logs, and it seems the app does not log stack trace, the document the app working with was gridfs files if that would help, at the same time the app was experiencing the error, i was able to go to mongo shell and check the collection there was no problem.

i also tried to reproduce the error again by changing the lib back to what it was, but it seems the the db is temp file storage that had about 7k files in it and the data was removed.

from mongo-php-adapter.

alcaeus avatar alcaeus commented on June 3, 2024

That's too bad. I took a look and found that each subdocument adds one nesting layer, so whether you will run into this issue depends on two factors:

  1. The structure of your document. The more levels of embedded documents your root document contains, the sooner you're going to hit the limit
  2. The code sorrounding the call. Since this library replaces ext-mongo, it will always be downstream from Doctrine ODM or another DBAL. If your code is heavily nested already (e.g. a Symfony application using Doctrine ODM) you'll run into problems sooner.

That being said, I'm not sure there's anything I can do about this. Using recursion is the only way I can ensure embedded documents are properly converted and we seem to run into arbitrary, non-changeable limits here.

If you want to try to reproduce this, try creating documents with different levels of embedded data and reading them from the same context (e.g. controller) they were read from when you first got the error. To fetch a trace, simply attach an error handler, look for the error in question and dump the trace.

{
    _id: 'embeddedSingle',
    embedded: { 'foo': true }
},
{
    _id: 'embeddedDouble',
    embedded: {
        embedded: { 'foo': true }
    }
}

from mongo-php-adapter.

alcaeus avatar alcaeus commented on June 3, 2024

Closing - if anyone is still getting this issue, please open a new ticket.

from mongo-php-adapter.

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.