I'm using mongoDB 3.2 with Java.
Is it possible to save a mongoDB query in a list of objects of a class of mine?
I want to save the query directly to a list of people.
class Pessoa{
String nome;
Date dataNascimento;
String em...
I'm having trouble running the upsert on the mongo when I connect in 3 shards in cpp.
Now when I connect in only one of the shards I can do the operation.
Does anyone have an alternative or do you know the reason for this error?
CODE:
Conne...
There is a collection with approximately 20 million records and each with about 200 searchable attributes.
Example:
{atrib001:"abc", atrib002:"123", atrib003:"1x3"... atrib200:"1zz"}
The application that does search allows it to be mount...
I need to use MongoDB inside Intel XDK, to log, register, save coordinates, then display on a map, etc ... Anyone have any suggestions for tool? Thank you!
I need to do an auto complete that consumes a mongodb database.
The words can be written with or without accent, uppercase or lowercase, that is, I need to define a collage in the mongo that allows me to do a search that ignores accent and case...
How do I get mongoDB to return a list of non-duplicate documents.
In my case, the mongoDB returns a list of ingredients from all the recipes registered, but I want those records without duplication because the recipes can repeat the same ingr...
How to disable numberLong in mongo 3?
I've tried mongo.native_long=0 and it did not work.
I'm using perl with mongoexport
I'm using perl with mongoexport
I'm trying to use MongoDB with Web2py, and for that I started with authentication, but this one appearing errors that I do not understand.
In a relational database, Web2py creates the authentication tables, in MongoDB the collections are not...
I'm thinking of creating referenced documents instead of embedded because I have a database in which an airplane has flights and flights have airports. Anyone experienced that could indicate the best option?
Imagine that I choose the referenc...
I need to sum the values stored in a variable in the database.
I have a form and I want to know the total value generated in a variable.
Then I did the following:
_.each(cliente.data, function (data) {
fo...