-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
How do you work with complex documents returned as arrays? #78
Comments
This is a known issue with PHP's mongo driver. I can't really do anything about it without a big impact on the performance. This was also mentioned in #65. But this should be possible:
|
I'll see if it could be simple to actually scan the arrays and transform them in objects but put an option in the driver to achieve so. Would you agree on accepting a PR if i found how to do it? |
I have been thinking about the same thing, but I fear it would be bad for performance on big collections because you would have to recursively scan each document. |
As long as it's toggleable as an option, i don't see an issue, else i'll just have to move away from the laravel querybuilder and make my own data access layer. Not that hard, but just annoying to have to do so! |
You map always send me possible solutions, preferably with benchmark results :) |
Disclaimer: just started looking into MongoDB, have not used either Laravel-MongoDB or Mongolid. That said, have you had a look at https://github.com/Zizaco/mongolid-laravel ? |
Now working on embedsMany relations: https://github.com/jenssegers/Laravel-MongoDB#embedsmany-relations |
Would really like to have this implemented as well. |
I'm trying out your library with a simple model that contains arrays of values such as:
Which works fine in itself, if i can place values in the object, i'm able to save them correctly to Mongodb and it looks something like the following and it's perfect.
But the problem is, when i comes back, i have arrays instead of objects. This forces me to redraw the code to use arrays instead of objects and the resulting issue is i keep getting "Indirect modification of overloaded element of Transport has no effect" exceptions because i'm trying to change a value of a returned array with is not a reference type, so the assign just ends up in the void and doesn't change anything.
Used to be and worked fine in the beginning:
Currently needs to be because mongo returns arrays in eloquent model:
Needs to be if i want to not get the exception:
I hope you agree that this last code i pasted smells a lot, it's ugly, hard to manage and hard to upgrade in the future. I'm used to doing my own repository classes and hydrators, but i want to take advantage of Eloquent in this project even though i'm using MongoDB.
So my question is, what is your approach to this problem?
The text was updated successfully, but these errors were encountered: