[00:08:40] <mastyd> nofxx: Yeah so currently I experimented with storing in redis, but I don't really need the historical position data until the event is done, and grabbing all the positions seems to be pretty slow on redis, considering I'm doing like 1200 lookups per user at the end of the event
[01:27:09] <SGTItlog> Hi, I just noticed something between count and aggregate. Let's I want to count every documents that has something. The count is not the same as the aggregate. Why is that so? Thanks.
[02:00:26] <SGTItlog> Because the field is not sharded thats why the aggregate only query the first shard.
[16:12:17] <greyTEO> if you have a chance, I am having an issue with the worker and need a bit of assistnace. I cant get it to enter this loop: https://gist.github.com/amcgregor/52a684854fb77b6e7395/75670c2ab697f51768db4bc793ee6be0b0af5b05#file-worker-py-L99
[16:12:44] <greyTEO> but I do see the cursor count at 2072
[16:53:11] <greyTEO> has anyone encounter pymongo cursor showing a number greater than 0 and teh loop failing becuase its empty?
[17:17:51] <sterns> hello, I am attempting to install mongo 2.x on Debian Wheezy. I've been trying to use the 10gen repo indicated here: https://futurestud.io/blog/how-to-install-mongodb-2-6-on-ubuntudebian/
[17:18:20] <sterns> but the server package throws an error about the /etc/init.d/mongod script
[17:18:45] <sterns> I've tried 2.6.10, 2.6.3, 2.6.2 they all do the same thing.
[17:20:25] <sterns> it appears that a symlink is created to a script in /lib/init that does not exist.
[19:13:09] <CharlesFinley> Hi, I'm trying to: 1) retrieve a document by id 2) push some new subobjects into the retrieved object. However, i'm getting an error: return this._schema.caster.cast(value, this._parent, false), TypeError: undefined is not a function. My code is here: http://pastebin.com/Yv1JBcjx
[19:13:46] <CharlesFinley> The error is caused by this instruction: result.documents.push(subdue);
[19:14:35] <CharlesFinley> result is: { _id: 55a14c967f65745c091faede, __v: 0, documents: [] }
[19:44:56] <CharlesFinley> Hi, I'm trying to: 1) retrieve a document by id 2) push some new subobjects into the retrieved object. However, i'm getting an error: return this._schema.caster.cast(value, this._parent, false), TypeError: undefined is not a function. My code is here: http://pastebin.com/Yv1JBcjx