I am trying to connect the phalcon framework with the non-relational database mongo DB, by making the configurations shown on the phalcon page and some forums, I still can not make the connection and every time I want to make a query or any inte...
good morning.
I have the following collection in mongoDb:
{
"signupDate": "2018-11-22T19:14:02.047Z",
"_id": "5bf700269e5b59276885eda5",
"userName": "pruebas",
"email": "[email protected]",
"password": "abc1234",
"interests": "{\"followEmai...
My problem is that I am trying to get an automatic response of a specific data if it is added in Firebase , but the drawback is that it is not a specific route that I can place to simply get the added value with child_added since I have...
I need to pass the following MongoDb query to Mongoose:
db.propiedads.find({
_id:ObjectId("5bb18cc42a8f2d23d8dfcd65"),
"planes.plan":ObjectId("5bb565f6382cf30364b182e5")
})
Currently this query is working in the mongo console. now I ad...
I am working with Apache Spark and MongoDB in Java. I have a database with a lot of documents, maybe more than 30,000,000 million documents.
Every time I make a connection in my project I charge this entire collection in a Dataset which is ve...
A few days ago I started to read about NoSQL database , being couchdb one that caught my attention, however, its low performance surprised me, which led me to do the following things:
1 - Create a database and test the speed of reading and...
I would like to know if there is any method to "force" the type of variable within MongoDB in Java .
I need to insert a Document with certain data, example:
Document doc = new Document();
// Forzar que guarde Rut como Integer siendo...