<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: NoSQL: Distributed and Scalable Non-Relational Database Systems</title>
	<atom:link href="http://www.linux-mag.com/id/7579/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linux-mag.com/id/7579/</link>
	<description>Open Source, Open Standards</description>
	<lastBuildDate>Fri, 10 May 2013 08:56:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: pabo</title>
		<link>http://www.linux-mag.com/id/7579/#comment-7173</link>
		<dc:creator>pabo</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7579/#comment-7173</guid>
		<description>&lt;p&gt;Interesting list. But I miss one really mature alternative: the ZODB, Zope Object database. It is an object-oriented database for transparently and persistently storing Python objects. It is included as part of the Zope web application server, but can also be used independently of Zope.
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Interesting list. But I miss one really mature alternative: the ZODB, Zope Object database. It is an object-oriented database for transparently and persistently storing Python objects. It is included as part of the Zope web application server, but can also be used independently of Zope.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: desnotes</title>
		<link>http://www.linux-mag.com/id/7579/#comment-7174</link>
		<dc:creator>desnotes</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7579/#comment-7174</guid>
		<description>&lt;p&gt;CouchDB is a pared down version of Lotus Notes. The main designer of CouchDB, Damien Katz, updated the Lotus Notes formula language engine before moving to MySQL where he started CouchDB and then moved back to IBM. It\&#039;s a great non-relational database and if you have experience with Notes, it is even easier to catch on.&lt;/p&gt;
&lt;p&gt;desNotes&lt;br /&gt;
desNotes@gmail.com&lt;br /&gt;
http://desnotesdev.blogspot.com
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>CouchDB is a pared down version of Lotus Notes. The main designer of CouchDB, Damien Katz, updated the Lotus Notes formula language engine before moving to MySQL where he started CouchDB and then moved back to IBM. It\&#8217;s a great non-relational database and if you have experience with Notes, it is even easier to catch on.</p>
<p>desNotes<br />
<a href="mailto:desNotes@gmail.com">desNotes@gmail.com</a><br />
<a href="http://desnotesdev.blogspot.com" rel="nofollow">http://desnotesdev.blogspot.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jbellis</title>
		<link>http://www.linux-mag.com/id/7579/#comment-7175</link>
		<dc:creator>jbellis</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7579/#comment-7175</guid>
		<description>&lt;p&gt;IMO the more interesting nosql databases are the distributed ones -- sure, the single-node key/value stores are interesting but if you just need 2x or 5x more performance you can always throw hardware at it.&lt;/p&gt;
&lt;p&gt;But if you need 100x?  (And a data set larger than memory...)  Then you need a distributed solution.&lt;/p&gt;
&lt;p&gt;I did some research about a year ago to see what OSS distributed database looked most promising.  I settled on Cassandra and I\&#039;ve been contributing to that project since.  (I\&#039;m a fan of improving existing projects, rather than fragmenting things further by starting a new one.)  Cassandra combines a fully distributed design (no single points of failure) with a ColumnFamily data model that allows efficient update/querying of individual columns within a row (as opposed to a monolithic blob associated with each key), a custom storage engine optimized for writes that unlike btree engines does not slow down as data size outgrows RAM, and support for clusters spanning multiple data centers.
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>IMO the more interesting nosql databases are the distributed ones &#8212; sure, the single-node key/value stores are interesting but if you just need 2x or 5x more performance you can always throw hardware at it.</p>
<p>But if you need 100x?  (And a data set larger than memory&#8230;)  Then you need a distributed solution.</p>
<p>I did some research about a year ago to see what OSS distributed database looked most promising.  I settled on Cassandra and I\&#8217;ve been contributing to that project since.  (I\&#8217;m a fan of improving existing projects, rather than fragmenting things further by starting a new one.)  Cassandra combines a fully distributed design (no single points of failure) with a ColumnFamily data model that allows efficient update/querying of individual columns within a row (as opposed to a monolithic blob associated with each key), a custom storage engine optimized for writes that unlike btree engines does not slow down as data size outgrows RAM, and support for clusters spanning multiple data centers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alphadogg</title>
		<link>http://www.linux-mag.com/id/7579/#comment-7176</link>
		<dc:creator>alphadogg</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7579/#comment-7176</guid>
		<description>&lt;p&gt;Great. Yet another \&quot;for hits\&quot; article jumping on the NoSQL bandwagon.&lt;/p&gt;
&lt;p&gt;It\&#039;s not a \&quot;higher-level change\&quot; at all. It\&#039;s dropping back down into the physical bowels of data storage when we had started rising above it with declarative \&quot;magic\&quot;.&lt;/p&gt;
&lt;p&gt;I\&#039;ll admit it\&#039;s the backend trend du jour. Like OODBMSes, XML DBMSes, etc were and then got relegated to niche usage when placed against the more-than-acceptable performance of RDBMSes for 90% of projects, and the plethora of community, educational tools and technologies creating a rich support environment.&lt;/p&gt;
&lt;p&gt;The main reason this will happen with the various key-value stores that are now in vogue is that they, like the predecessors, are built to solve a very, very specific issue on high-volume, low-complexity data, which is not the norm. The NoSQL moniker is indicative of a misplaced focus. NO structured query language? Really? We want to go back to chasing pointers and recreating wrappers for access?&lt;/p&gt;
&lt;p&gt;However, the sea of developers that poorly understand the relational model and must continuously re-invent the wheel will likely never disappear.
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great. Yet another \&#8221;for hits\&#8221; article jumping on the NoSQL bandwagon.</p>
<p>It\&#8217;s not a \&#8221;higher-level change\&#8221; at all. It\&#8217;s dropping back down into the physical bowels of data storage when we had started rising above it with declarative \&#8221;magic\&#8221;.</p>
<p>I\&#8217;ll admit it\&#8217;s the backend trend du jour. Like OODBMSes, XML DBMSes, etc were and then got relegated to niche usage when placed against the more-than-acceptable performance of RDBMSes for 90% of projects, and the plethora of community, educational tools and technologies creating a rich support environment.</p>
<p>The main reason this will happen with the various key-value stores that are now in vogue is that they, like the predecessors, are built to solve a very, very specific issue on high-volume, low-complexity data, which is not the norm. The NoSQL moniker is indicative of a misplaced focus. NO structured query language? Really? We want to go back to chasing pointers and recreating wrappers for access?</p>
<p>However, the sea of developers that poorly understand the relational model and must continuously re-invent the wheel will likely never disappear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: satpal12021</title>
		<link>http://www.linux-mag.com/id/7579/#comment-7177</link>
		<dc:creator>satpal12021</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linux-mag.com/id/7579/#comment-7177</guid>
		<description>&lt;p&gt;Saltmarch Media is organizing Great Indian Developer Summit event in Bangalore. This Summit will be a boost for the Software Developing Industries. It covers the topics like .Net,Simple DB, CouchDB, NoSQL, Java and Richweb and has 1 day workshop at the end as well. Any one attending this event?&lt;/p&gt;
&lt;p&gt;Register @ www.developersummit.com
&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Saltmarch Media is organizing Great Indian Developer Summit event in Bangalore. This Summit will be a boost for the Software Developing Industries. It covers the topics like .Net,Simple DB, CouchDB, NoSQL, Java and Richweb and has 1 day workshop at the end as well. Any one attending this event?</p>
<p>Register @ <a href="http://www.developersummit.com" rel="nofollow">http://www.developersummit.com</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>