Tags
ajax apache asp.net Automation blogging capistrano compact framework continuous integration cruisecontrol csharp database DOJO-Toolkit dsl erlang exercises firefox functional programming grails groovy hibernate hql HTML Java JSON Life meta-programming mock-objects mongodb msbuild nunit ObjectBuilder orm performance rails rest ruby-on-rails software-development sql subversion Unit Testing validation version-control WebDAV windows-mobile WordPress xmlAds
Archives
Meta
Tag Archives: mongodb
NoSQL with MongoDB and Ruby Presentation
I presented at the Milwaukee Ruby User’s Group tonight on NoSQL using MongoDB and Ruby. Code Snippets for the Presentation Basic Operations // insert data db.factories.insert( { name: "Miller", metro: { city: "Milwaukee", state: "WI" } } ); db.factories.insert( … Continue reading
MongoDB: MapReduce Functions for Grouping
SQL GROUP BY allows you to perform aggregate functions on data sets; To count all of the stores in each state, to average a series of related numbers, etc. MongoDB has some aggregate functions but they are fairly limited in … Continue reading
MongoDB Replication is Easy
Database replication with MongoDB is easy to setup. Replication duplicates all of the data from a master to one or more slave instances and allows for safety and quick recovery in case of a problem with your master database. Here … Continue reading
MongoDB and Java: Find an item by Id
MongoDB is one of a number of new databases that have cropped up lately eschewing SQL. These NoSQL databases provide non-relational models that are suitable for solving different kinds of problems. This camp includes document oriented, tabular and key/value oriented … Continue reading