Tagged Questions
0
votes
2answers
307 views
Custom Mongo ObjectId for inserts
Some Background:
I'm using MongoDB in tandem with ElasticSearch via the mongo-elasticsearch river. In Elasticsearch I want the structure of my documents to look like this:
{
"_id": ...
2
votes
1answer
208 views
C# mongoDB - insert not creating Id?
I have created a simple object with getters and setters:
public class MemberCanonical : IMemberCanonical
{
public ObjectId Id { get; set; }
public String username { get; set; }
...
2
votes
1answer
402 views
Incremental MapReduce with time interval in mongoDB
i got some records from server with time interval of 10 minute (in 1 hours i will get 6 files)
i want to do map reduce on every 1 hours in next hours i will have to do map reduce of next group on 6 ...
2
votes
3answers
449 views
mongoimport doesn't import the object properly
In Mongodb v2.2 When I try to import one simple json document file like this from my .json file into an empty collection I get 13 objects imported. Here is what I'm doing.
this is the data (I've ...
3
votes
2answers
221 views
Is there any free / Open source Mongo DB browser available? [duplicate]
Possible Duplicate:
Mongo interface
I am new to mongo db, and i am looking for a user interface for Mongo DB, I am storing data in my Mongo Db and want to check If its getting Stored ...