MongoDB 2.6 Released
111–119 of 119 posts
Re: MongoDB 2.6 Released
#112Earlier quoted context omitted.
Everything will segfault under certain circumstances.
The only reasonable assumption is circumstances that do not involve hardware failure, the binary being compiled incorrectly, the source code being modified or replaced by someone downstream, the libraries it is using being corrupt or having been replaced by ABI-incompatible variants... none of these are reasonable circumstances; one would then further assume that the person posting has run into reasonable circumstanc…
Re: MongoDB 2.6 Released
#113Re: MongoDB 2.6 Released
#114With this release aggregation framework got super powerful. Now it returns a cursor. Now we can get the aggregation results and iterate over them. No more 16mb result limitation as well...
Can you elaborate for people who don't understand the feature? Is the aggregation result large because of grouping?
Re: MongoDB 2.6 Released
#115Earlier quoted context omitted.
You are referring to using an index, correct? Because grep is absolutely, madly efficient for a doing a full search. The index portion of a file system are called files and directories. Several file names can refer to the same data. Those are called hard links. So with hard links, I can refer to a Foo by their related Bar. /foo/foo1 /foo/foo2 /foo/by_bar/bar1 /foo/by_bar/bar2 /foo/by_bar/bar3 /bar/bar1 /bar/bar2 /bar…
Grep is essentially the slowest way to search content. It has to read every byte. You can do much better with term/field indexing. Why would you be calling grep from an online application anyway?
Re: MongoDB 2.6 Released
#116Earlier quoted context omitted.
It's 700/month (otherwise your product isn't needed because no-sharding? postgresql can do most of the stuff) the hosted version is upto 8gb ram, don't you think that's low ? sqlserver + oracle are also insane
$700 annually. Please read well before you misrepresent us. By the way Partitioning by Hash and Range as we have stated means "Sharding"
what i meant is that the correct price is 700 and not 350 since the 350 pricing doesn't include sharding/clustering
Re: MongoDB 2.6 Released
#117Mongo haven't updated their feeds for Ubuntu. I wonder how long they will take to do so?
This means no automatic upgrades to 2.6, and sysadmin action to correct config file name etc.
Re: MongoDB 2.6 Released
#118Earlier quoted context omitted.
Grep is essentially the slowest way to search content. It has to read every byte. You can do much better with term/field indexing. Why would you be calling grep from an online application anyway?
Grep doesn't read every byte.
You are missing the big picture here of linear search versus indexed search. Optimizations in grep don't magically make it better than O(n).
Re: MongoDB 2.6 Released
#119So i've been trying to find an the ideal case for mongodb, because I have to teach a nosql database to some people I am mentoring. I'm leaning heavily towards couchdb though. http://daemon.co.za/2014/04/when-is-mongodb-the-right-tool
same with some others document json oriented database (like elastic search), but mongodb is a good compromise in many area, the query language is easy to understand and powerful, the biggest issue being the diffculty to do complex computation and aggreagation: mapreduce help, aggreagation framework helps too, but in this area SQL is generally much faster for instance.