In these days I am really interested in nosql tools and especially in the  MongoDB  document databse.

What amazes me about mongo is that is much more than a key value pair storage while it expose a quite complete query api, a full indexes support and an atomic Fast-In-Place data update.

Over this MongoDB supports asynchronous replication of data between servers for failover and redundancy. This makes really easy to share and replicate data between a cluster.

The result is that Mongodb is an incredibly fast and flexible document database.

Following what Mark Drew was  doing for CouchDb I thought was a good idea to implement a Railo Cache plugin that bring into Railo world the power of MongoDB used as cache engine.

The extension implements the Railo Cache interface at 100%. This means that you can switch from any other cache that Railo support to MongoDb cache with safety. The driver serialize  any object ( or queries or templates etc... ) you want to cache and will reinflate them up when you need to read them. An index is created over the key of your cache objects so that reading them will be a breeze. The plugin also support the mongodb replica Sets ( cluster )  and makes your application wait if a failover is in place.

Many thanks to Mark Drew that made the installation docs over the Railo wiki. You can find more info, installation step by step and details here: 

http://wiki.getrailo.com/wiki/extensions:mongodb


 


andreacfm