I've read many discussions from this group about multiple cpus, read
http://www.mongodb.org/display/DOCS/How+does+concurrency+work but
mongo still stuck with single core. I use a few instances of a script
to test, each of them creates new connection. They send the same and
the only query (no writes, python code below)
mongo.posts_daily.find({'site_id': YYYYY, 'ts': {'$gte': XXXXXX}},
fields={'ts': 1, 't': 1, 'post_id': 1})
tried with totally identical queries and with different params, no
luck.
Made sharding just to try something different, but obviously each
mongod instance still uses one core only
What am i missing?
Thanks
thanks