Tagged Questions
0
votes
1answer
28 views
find by Object Id in Jongo
I know this question is incredibly basic... I'm sorry in advance.
I can't do a 'find by ID' for Mongo using Jongo.
I tried
Iterator<MongoTest> all = ...
0
votes
1answer
137 views
MongoDB aggregation cannot use $limit twice
I have the following MongoDB collection "Games":
{
"_id" : ObjectId("515461d3c6c18efd4a811fd3"),
"gameid" : NumberLong("86982207656"),
"tableName" : "Hydra Zoom 40-100 bb",
"nplayers" : 6,
...
0
votes
1answer
75 views
$avg not returning average [closed]
this is my code:
//Build the query
//match only records in cluster 1
DBObject match = new BasicDBObject("$match", new BasicDBObject("clusterId",_id));
//the projected result ...
0
votes
1answer
94 views
unmarshall aggregate result with Jongo
I am using the MongoDB aggregate framework to query a document, the results is the following:
{
"result" : [
{
"_id" : "luke",
...
1
vote
3answers
137 views
(MongoDB Java) $push into array
Good morning,
I'm using mongo 2.2.3 and the java driver.
My dilemma, I have to $push a field and value into an array, but I cant seem to figure out how to do this. A sample of my data:
"_id" : 1,
...
1
vote
1answer
46 views
Manual references support
Consider the class:
class Person {
String name;
Person father;
Person mother;
List<Person> children;
}
Is there a way to indicate to jongo that father, mother and children ...
2
votes
2answers
263 views
Jongo vs (DBObject)JSON.parse
I'm trying to figure out the advantage of Jongo over simply unmarshalling the json command using (DBObject)JSON.parse(...) and using the DBObject in the below fashion.
Is there a performance ...
0
votes
1answer
296 views
Querying for date using jongo driver for mongo
I use jongo driver to connect to my mongoDB .
The syntax for querying - for ex, some age less than 18 - is
collection.find("{age: {$lt : 18}}");
but how to query for a date ?
In the mongoDB the ...
0
votes
2answers
138 views
How to get jar lib files of jongo?
Follow at jongo a java library on top of MongoDB allow Query in Java as in Mongo shell.
Example:
SHELL
db.friends.find({"age": {$gt: 18}});
JAVA DRIVER
friends.find(new BasicDBObject("age",new ...
