Posts about NoSQL databases and Polyglot persistence from Tuesday, 1 April 2014
A practical comparison of Map-Reduce in MongoDB and RavenDB
Ben Foster looks at MongoDB’s Map-Reduce and aggregation framework and then compares them with RavenDB’s Map-Reduce:
I thought it would be interesting to do a practical comparison of Map-Reduce in both MongoDB and RavenDB.
There are more differences than similarities — I’m not referring to the API differences, but to fundamental differences to the ways they operate.
✚ RavenDB’s author has a follow up post in which he underlines another major difference: RavenDB’s Map-Reduce operates as an index, while MongoDB’s Map-Reduce is an online operation.
Original title and link: A practical comparison of Map-Reduce in MongoDB and RavenDB ( ©myNoSQL)
via: http://benfoster.io/blog/map-reduce-in-mongodb-and-ravendb
April 3 Webinar: The BlueKai Playbook for Scaling to 10 Trillion Transactions a Month [sponsor]
myNoSQL’s supporter Aerospike is getting ready for a new case study webinar:
As the industry’s largest online data exchange, BlueKai knows a thing or two about pushing the limits of scale. Find out how they are processing up to 10 trillion transactions per month from Vice President of Data Delivery, Ted Wallace.
Register today for the webinar on this Thursday, Apr. 3rd.
Original title and link: April 3 Webinar: The BlueKai Playbook for Scaling to 10 Trillion Transactions a Month [sponsor] ( ©myNoSQL)
Writing your own @Resource: Apache TomEE + NoSQL
Alex Soto:
@Resource
annotation appeared for the first time in Java EE 5 specification. When you annotate an attribute with@Resource
, it will be the container responsible of injecting the requested resource. […] With Apache TomEE you can do it by providing your own@Resource
provider class. In this post we are going to see how you write your own provider for MongoDB so you can use@Resource
for MongoDB too.
Code seems to be pretty simple. But it doesn’t go into details like lifecycle & such, which usually makes these things much more interesting.
Original title and link: Writing your own @Resource: Apache TomEE + NoSQL ( ©myNoSQL)
via: http://www.lordofthejars.com/2014/03/apache-tomee-nosql-writing-your-own.html