forked from edlich/nosql-database.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.html
1576 lines (890 loc) · 68.5 KB
/
links.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Links - NOSQL Databases</title>
<meta name="author" content="Prof. Dr.Stefan Edlich">
<meta name="publisher" content="Prof. Dr.Stefan Edlich">
<meta name="description"
content="The ultimate reference for NOSQL Databases. Includes Events, Links, Tools, News, Forums, Books and much more...">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" type="image/x-icon" href="/Resources/Public/Img/favicon.ico">
<link href="Resources/Public/Css/Main.css" rel="stylesheet">
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-1535339-3");
pageTracker._trackPageview();
} catch (err) {
}</script>
</head>
<body>
<div id="wrapper">
<header>
<div class="third">
<a href="index.html"><img width="251" height="61" alt="NoSQL Logo" src="Resources/Public/Img/nosql-logo.gif"></a>
</div>
<div class="third">
Your Ultimate Guide to the <br/>
Non - Relational Universe!<br/>
</div>
<div class="third">
[the <strong>best selected</strong> nosql link <a href="links.html">Archive</a> in the web]<br/>
<small>...never miss a <i>conceptual</i>
article again...<br>
<strong>News Feed </strong>covering some changes
</small>
<small><a href="http://nosql-databases.blogspot.com/">here</a></small>
<small>
<strong>!</strong>
</small>
</div>
</header>
<div id="main">
<h1>Links, Articles, Blogs</h1>
<p>This is a historic archive about the raise of NoSQL. It includes all relevant links from 2008&2009 till the end of 2011.</p>
<h2>2011</h2>
<ul>
<li>UnQL Richard Hipp, Damien Katz <a
href="http://www.unqlspec.org/display/UnQL/Home" target="_blank">»</a> <span class="red" title="TOP">★</span> (see some
<a href="http://www.unqlspec.org/display/UnQL/Example+Queries+and+Usage" target="_blank">example</a> queries)
</li>
<li>"35+ Use Cases For Choosing Your Next NoSQL Database",High Scalability Blog, <a
href="http://highscalability.com/blog/2011/6/20/35-use-cases-for-choosing-your-next-nosql-database.html"
target="_blank">»</a> </li>
<li>"101 Questions To Ask When Considering A NoSQL Database", High Scalability Blog, <a
href="http://highscalability.com/blog/2011/6/15/101-questions-to-ask-when-considering-a-nosql-database.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+HighScalability+%28High+Scalability%29"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Measuring the scalability of SQL and NoSQL systems", Adam Silberstein and Raghu Ramakrishnan, Yahoo! Research, <a
href="http://www.odbms.org/blog/2011/05/measuring-the-scalability-of-sql-and-nosql-systems/"
target="_blank">»</a> (via <a href="http://www.odbms.org/" target="_blank">odbms.org</a>)
</li>
<li>"The NoSQL Ecosystem", Adam Marcus (from tehe aosabook.org), <a href="http://www.aosabook.org/en/nosql.html"
target="_blank">»</a></li>
<li>"Lies, Damn Lies and NoSQL", the Basho Blog, <a
href="http://blog.basho.com/2011/05/11/Lies-Damn-Lies-And-NoSQL/">»</a></li>
<li>"Eventual Path Consistency", K.S. Bhaskar, 2nd Part <a
href="http://ksbhaskar.blogspot.com/2011/04/maintaining-eventual-path-consistency.html"
target="_blank">»</a> (First part 5 items below)
</li>
<li>* "A Co-Relational Model of Data for Large Shared Data Banks", Erik Meijer, <a
href="http://cacm.acm.org/magazines/2011/4/106584-a-co-relational-model-of-data-for-large-shared-data-banks/fulltext"
target="_blank">»</a></li>
<li>* "Towards a mathematical model for noSQL" (and a peaceful coexistance), Erik Meijer, Slides <a
href="http://gotocon.com/dl/jaoo-brisbane-2010/slides/ErikMeijer_bKeynotebExploringNoSQL.pdf"
target="_blank">»</a> Article <a
href="http://cacm.acm.org/magazines/2011/4/106584-a-co-relational-model-of-data-for-large-shared-data-banks/fulltext"
target="_blank">»</a></li>
<li>"NoSQL, NewSQL and Beyond" 451 Group via InfoQ <a href="http://www.infoq.com/news/2011/04/newsql"
target="_blank"> </a> <span class="red" title="TOP">★</span></li>
<li>"NoSQL Speed Bumps", Ken North / Dr. Dobbs, <a href="http://drdobbs.com/blogs/database/229400759"
target="_blank">»</a></li>
<li>"Eventual State Consistency vs. Eventual Path Consistency", Bhaskar, <a
href="http://ksbhaskar.blogspot.com/2011/03/eventual-consistency-vs-eventual.html" target="_blank">»</a>
</li>
<li>"NoSQL at NETFLIX", Yury Izrailevsky <a href="http://techblog.netflix.com/2011/01/nosql-at-netflix.html"
target="_blank">»</a></li>
<li>"NoSQL at Twitter", Ryan Kind (seen by MyNoSQL) <a href="http://nosql.mypopescu.com/" target="_blank">»</a>
</li>
<li>"NoSQL in the Sauna", by Prospectus IT Recrutement, <a href="http://www.youtube.com/watch?v=Pzd-zNLAhus"
target="_blank">»</a></li>
<li>"NoSQL Tapes" by Tim Anglade, <a href="http://nosqltapes.com/" target="_blank">»</a><span class="red" title="TOP">★★</span></li>
<li>James Hamilton on "Google Megastore" paper. "The Engine behind GAE", <a
href="http://perspectives.mvdirona.com/2011/01/09/GoogleMegastoreTheDataEngineBehindGAE.aspx"
target="_blank">»</a></li>
</ul>
<h2>Oct & Nov & Dec 2010</h2>
<ul>
<li>"Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison", Kristof Kovacs, <a
href="http://kkovacs.eu/cassandra-vs-mongodb-vs-couchdb-vs-redis" target="_blank">»</a></li>
<li>"BI at large scale", Rickey Ho, <a href="http://horicky.blogspot.com/2010/12/bi-at-large-scale.html">»</a>
</li>
<li>"Document-oriented DBMS without joins", dbms2, <a
href="http://www.dbms2.com/2010/11/29/document-database-without-joins/">»</a></li>
<li>"What The Heck Are You Actually Using NoSQL For?", highscalability blog, <a
href="http://highscalability.com/blog/2010/12/6/what-the-heck-are-you-actually-using-nosql-for.html">»</a>
</li>
<li><a href="http://avro.apache.org/" target="_blank">Avro</a>, the <a href="http://thrift.apache.org/" target="_blank">Thrift</a>
successor? Why? <a href="http://io.typepad.com/glossary.html" target="_blank">»</a> <a
href="http://spyced.blogspot.com/2010/03/cassandra-in-google-summer-of-code-2010.html"
target="_blank">»</a></li>
<li>"Scalable Design Patterns", <a href="http://horicky.blogspot.com/2010/10/scalable-system-design-patterns.html"
target="_blank">»</a> and "Map/Reduce and Stream Processing", <a
href="http://horicky.blogspot.com/2010/11/map-reduce-and-stream-processing.html" target="_blank">»</a> by
Rickey Ho <span class="red" title="TOP">★</span>
</li>
<li>"Some NoSQL Myths", Tony Bain, <a href="http://blog.tonybain.com/tony_bain/2010/10/some-nosql-myths.html"
target="_blank">»</a></li>
<li>"NoSQL Solution: Evaluation Guide [CHART]" Jun Xu (Perfectmarket), <a
href="http://perfectmarket.com/blog/not_only_nosql_review_solution_evaluation_guide_chart"
target="_blank">»</a></li>
<li>Spring Announces Support for NoSQL, <a href="http://blog.neo4j.org/2010/10/spring-data-and-neo4j.html"
target="_blank">»</a></li>
<li>"Databases are hammers; MapReduce is a screwdriver", Mark C. Chu-Carroll", <a
href="http://scienceblogs.com/goodmath/2008/01/databases_are_hammers_mapreduc.php" target="_blank">»</a> (2008
old but valid)
</li>
<li>"BigTable Model with Cassandra and HBase", Rickey Ho, <a
href="http://horicky.blogspot.com/2010/10/bigtable-model-with-cassandra-and-hbase.html"
target="_blank">»</a> (older: "NoSQL Patterns" <a
href="http://horicky.blogspot.com/2009/11/nosql-patterns.html" target="_blank">»</a>) <span class="red" title="TOP">★</span></li>
<li>"NoSQL Basics, Benefits and Best-Fit Scenarios", Curt Monash, <a
href="http://intelligent-enterprise.informationweek.com/channels/information_management/showArticle.jhtml;jsessionid=VQKL0FG1IMFMXQE1GHOSKH4ATMY32JVN?articleID=227701021&pgno=2"
target="_blank">»</a></li>
<li>"PAX Analytica? Row- and column-stores begin to come together", dbms2 <a
href="http://www.dbms2.com/2009/08/04/pax-analytica-row-and-column-stores-begin-to-come-together/"
target="_blank">»</a></li>
</ul>
<h2>Sept & August 2010</h2>
<ul>
<li>"The SMAQ stack for big data", Edd Dumbill , <a
href="http://radar.oreilly.com/2010/09/the-smaq-stack-for-big-data.html" target="_blank">»</a></li>
<li>"A Gentle Introduction to CouchDB for Relational Practitioners", Barun Schwartz, <a
href="http://blog.couchone.com/post/1167966323/a-gentle-introduction-to-couchdb-for-relational"
target="_blank">»</a></li>
<li>"Normalization is from the devil", Ayende Rahien, <a
href="http://ayende.com/Blog/archive/2010/09/06/normalization-is-from-the-devil.aspx"
target="_blank">»</a></li>
<li>"10 things you should know about NoSQL databases" Jody Gilbert, <a
href="http://blogs.techrepublic.com.com/10things/?p=1772" target="_blank">»</a> (found via <a
href="http://nosql.mypopescu.com/" target="_blank">myNoSQL</a>)
</li>
<li>"GameChange and MongoDB: a case strudy in MySQL conversion", aurum blog, <a href="http://aurum.tumblr.com/"
target="_blank">»</a></li>
<li>Rickey Ho has written again some great blog articles about MR (<a
href="http://horicky.blogspot.com/2010/08/designing-algorithmis-for-map-reduce.html" target="_blank">1</a> &
<a href="http://horicky.blogspot.com/2010/08/mapreduce-to-recommend-people.html" target="_blank">2</a> & <a
href="http://horicky.blogspot.com/2010/07/graph-processing-in-map-reduce.html" target="_blank">3</a>), <a
href="http://horicky.blogspot.com/2010/08/limitations-of-sparql.html" target="_blank">SparQL</a> and more <span class="red" title="TOP">★</span></li>
<li>"The naming of the Foo", DBMS2 Blog, <a href="http://www.dbms2.com/2010/03/13/the-naming-of-the-foo/"
target="_blank">»</a></li>
<li>"Menbase, the database powering Farmville", Audrey Watters, <a
href="http://www.readwriteweb.com/cloud/2010/08/membase-the-database-powering.php" target="_blank">»</a>
</li>
<li>"Designing Web Apps for Scalability", Max Indelicato, <a
href="http://www.osconvo.com/post/view/2010/8/12/designing-web-applications-for-scalability">»</a></li>
<li>"Using Object Database db4o as Storage Provider in Voldemort", German Viscuso, <a
href="https://docs.google.com/document/pub?id=1jgHXJTxbTP3qxljKHgU73vbsoDkzY8rOm9VcmvR7eps">»</a></li>
<li>"Pairing NoSQL and Relational Data Storage: MySQL with MongoDB", Max Indelicato, <a
href="http://www.osconvo.com/post/view/2010/8/5/pairing-nosql-and-relational-data-storage-mysql-with-mongodb"
target="_blank">»</a></li>
</ul>
<h2>July & August 2010 </h2>
<ul>
<li>"Three Papers on Load Balancing", Alex Popescu, <a href="Alex%20Handy" target="_blank">»</a></li>
<li>"Just say NoSQL", Alex Handy, <a href="http://www.sdtimes.com/link/34483" target="_blank">»</a></li>
<li>"Google Pregel Graph Processing", Rickey Ho, <a href="http://java.dzone.com/news/google-pregel-graph-processing"
target="_blank">»</a></li>
<li>"What NoSQL Store Should I Use? The Right Tool for Your Use Case", Mitchell Pronsc, <a
href="http://architects.dzone.com/articles/what-nosql-store-should-i-use" target="_blank">»</a></li>
<li>"NoSQL, Heroku, and You / Why NoSQL Matters", by Adam, <a href="http://blog.heroku.com/archives/2010/7/20/nosql/"
target="_blank">»</a> (Daas, Database-as-a-Service) <span class="red" title="TOP">★</span></li>
<li>"Riak and Cassandra and HBase, oh my!", deinspanjer, <a
href="http://blog.mozilla.com/data/2010/05/18/riak-and-cassandra-and-hbase-oh-my/" target="_blank">»</a>
</li>
<li>"A Quick Introduction to the Cassandra Data Model", Maxim Grinev, <a
href="http://maxgrinev.com/2010/07/09/a-quick-introduction-to-the-cassandra-data-model/"
target="_blank">»</a></li>
<li>"Relational Data, Document Databases and Schema Design", Mathias Meyer, <a
href="http://www.paperplanes.de/2010/7/5/relational_data_document_databases_schema_design.html"
target="_blank">»</a></li>
<li>"VoltDB decapitates sic SQL urban myths and delivers Internet Scale OLTP in the process", Hi Scalability Blog, <a
href="http://highscalability.com/blog/2010/6/28/voltdb-decapitates-six-sql-urban-myths-and-delivers-internet.html"
target="_blank">»</a></li>
<li>"Exploring the software behind Facebook, the world's largest site", Pingdom, <a
href="http://royal.pingdom.com/2010/06/18/the-software-behind-facebook/" target="_blank">»</a></li>
</ul>
<h2>May & June 2010</h2>
<ul>
<li>"Constructions from Dots and Lines", Marko A. Rodriguez, Peter Neubauer, <a href="http://arxiv.org/abs/1006.2361"
target="_blank">»</a></li>
<li>"A phase shift for the ORM", Debasish Ghosh, <a
href="http://debasishg.blogspot.com/2010/06/phase-shift-for-orm.html" target="_blank">»</a>
</li>
<li>"Distributed Storage System Classification", Jeff Darcy, <a href="http://pl.atyp.us/wordpress/?p=2929"
target="_blank">»</a> <a
href="http://nosql.mypopescu.com/post/745961224/distributed-storage-system-classification"
target="_blank">»</a>, (<a href="http://nosql.mypopescu.com/" target="_blank">via</a> Alex Popescu)
</li>
<li>"Quest unveils NoSQL database management tool", Computerworld, <a
href="http://www.computerworld.com/s/article/9178426/Quest_unveils_NoSQL_database_management_tool"
target="_blank">»</a></li>
<li>NoSQL Talk at OGF29, Krishna Sankar, <a
href="http://doubleclix.wordpress.com/2010/06/20/nosql-talk-references/">»</a></li>
<li>"The NoSQL Alternative", Ken North on Dr. Dobbs, <a href="http://www.drdobbs.com/database/224900500"
target="_blank">»</a></li>
<li>"Graph Databases, NoSQL and Neo4j", Peter Neubauer, <a href="http://www.infoq.com/articles/graph-nosql-neo4j"
target="_blank">»</a></li>
<li>"The H Speed guide to NoSQL", Dj Walker Morgan, <a
href="http://www.h-online.com/open/features/The-H-speed-guide-to-NoSQL-981275.html" target="_blank"> »</a>
</li>
<li>"That No SQL Thing: Why do I need that again?", Ayende Rahien, <a
href="http://ayende.com/Blog/archive/2010/05/09/that-no-sql-thing-why-do-i-need-that-again.aspx"
target="_blank">»</a></li>
<li>"NoSQL Graph Database Comparison", DZone, <a href="http://java.dzone.com/news/nosql-graph-database-feature"
target="_blank">»</a></li>
<li>"The end of relational databases?", Febryadi.com, <a href="http://www.febryadi.com/?p=790"
target="_blank">»</a>
</li>
<li>"Read your writes (WRY), aka immediate, consistency", <a href="http://www.dbms2.com/" target="_blank">dbms2</a>, <a
href="http://www.dbms2.com/2010/05/01/ryw-read-your-writes-consistency/" target="_blank">»</a></li>
</ul>
<h2>April 2010</h2>
<ul>
<li>"Intro to Hadoop, HBase and NoSQL", Nick Dimidiuk (slides), <a
href="http://www.slideshare.net/xefyr/introduction-to-hadoop-hbase-and-nosql" target="_blank">»</a></li>
<li>"NoSQL at Twitter", Kevin Well (156 pages!), <a
href="http://www.slideshare.net/kevinweil/nosql-at-twitter-nosql-eu-2010" target="_blank">»</a>
</li>
<li>"Design Patterns for Distributed Non-Relatinoal Databases", Todd Lipcon, <a
href="http://www.slideshare.net/guestdfd1ec/design-patterns-for-distributed-nonrelational-databases"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"MongoDB vs. SQL Server 2008 Performance Showdown", Michael Kennedy, <a
href="http://www.michaelckennedy.net/blog/2010/04/29/MongoDBVsSQLServer2008PerformanceShowdown.aspx"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"A Few Words About 'NoSQL' and Other Unstructured Databases", Matt Sarrel, <a href="http://t.love.com/324042023"
target="_blank">»</a></li>
<li>"On The Facebook Open Graph and Graph Databases", Emil Efrem, <a
href="http://blogs.neotechnology.com/emil/2010/04/on-the-facebook-open-graph-and-graph-databases.html"
target="_blank">»</a></li>
<li>Great nosql:eu coverage (thanks myNoSQL), <a href="http://nosql.mypopescu.com/post/535298743/nosql-eu-first-day"
target="_blank">firstDay</a>, <a
href="http://nosql.mypopescu.com/post/537762416/nosql-eu-second-day" target="_blank">secondDay</a></li>
<li>"NoSQL in the Enterprise", Sourav Mazumder / InfoQ, <a href="http://www.infoq.com/articles/nosql-in-the-enterprise"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"NoSQL @ Qbranch", (slides by) Marten Gustafson, <a
href="http://gigaom.com/2010/04/07/gizzard-anyone-twitter-offers-up-code-for-distributed-data/"
target="_blank">»</a></li>
<li>"NoSQL for Dummies", (slides by) Tobias Ivarsson, <a href="http://www.slideshare.net/thobe/nosql-for-dummies"
target="_blank">»</a></li>
<li>"Yes, Virginia, MarkLogic is a NoSQL System", Dave Kellog, <a
href="http://www.kellblog.com/2010/04/11/yes-virginia-marklogic-is-a-nosql-system/" target="_blank">»</a>
</li>
<li>"NoSQL is about", Jan Lennart, <a href="http://blog.couch.io/post/511008668/nosql-is-about"
target="_blank">»</a></li>
<li>"NoSQL Databases", Marin Dimitrov, <a href="http://www.slideshare.net/marin_dimitrov/nosql-databases-3584443"
target="_blank">»</a><span class="red" title="TOP">★</span>
</li>
<li>"MapReduce in Simple Terms",esaliya , <a href="http://www.slideshare.net/esaliya/mapreduce-in-simple-terms"
target="_blank">»</a></li>
<li>"A Brief History of NoSQL", Knut Haugen, <a href="http://blog.knuthaugen.no/2010/03/a-brief-history-of-nosql.html"
target="_blank">»</a></li>
<li>"Why NoSQL Will Not Die", Stephan Schmidt, <a href="http://codemonkeyism.com/nosql-die/">»</a> (responso
to article 2 below)
</li>
<li>"NoSQL Workshop - Featuring Riak and CouchDB", vermonster workshop", <a
href="http://vermonster.com/2010/03/31/nosql-workshop-featuring-riak-and-couchdb/" target="_blank">»</a>
</li>
</ul>
<h2>March 2010</h2>
<ul>
<li>"Can't wait for NoSQL to Die", Ted Dziuba, <a href="http://teddziuba.com/2010/03/i-cant-wait-for-nosql-to-die.html"
target="_blank">»</a> some response: <a
href="http://blog.zawodny.com/2010/03/28/nosql-is-software-darwinism/" target="_blank">»</a>
</li>
<li>NoSQL - Smackdown, mp3 Episodes, (live discussions) <a
href="http://thechangelog.com/post/457259567/episode-0-1-8-nosql-smackdown" target="_blank">»</a>
</li>
<li>"HBase vs Cassandra: why we moved", Dominic Williams, <a
href="http://ria101.wordpress.com/2010/02/24/hbase-vs-cassandra-why-we-moved/" target="_blank">»</a></li>
<li>"NoSQL Database Movement Gains Ground as Alternative", Brian Prince / Eweek, <a
href="http://www.eweek.com/c/a/Database/NoSQL-Database-Movement-Gains-Ground-as-Alternative-734981/"
target="_blank">»</a></li>
<li>"12 Reasons To Be Learning Graph Theory", Andrés Osinski, <a
href="http://andresosinski.com.ar/blog_view_entry/?id=1" target="_blank">»</a></li>
<li>All recordings from NoSQL Live Boston, <a href="http://mrtopf.de/blog/en/nosqllive_boston/"
target="_blank">»</a></li>
<li>"Toward a NoSQL Taxonomy", DBMS2, <a href="http://www.dbms2.com/2010/03/14/nosql-taxonomy/"
target="_blank">»</a></li>
<li>"Visual Guide to NoSQL Systems", Nathan Hurst, <a
href="http://blog.nahurst.com/visual-guide-to-nosql-systems">»</a></li>
<li>"NoSQL: Staying for the feature presentation", Any Oram, (Conf Report), <a
href="http://broadcast.oreilly.com/2010/03/nosql-staying-for-the-feature.html" target="_blank">»</a></li>
<li>"Stuck with NoSQL?", Kent Beck, <a href="http://www.threeriversinstitute.org/blog/?p=475"
target="_blank">»</a></li>
<li>"Building Scalable Databases: Are Relational Databases Compatible with Large Scale Websites?", Dare Obasanjo, <a
href="http://www.25hoursaday.com/weblog/2010/03/10/BuildingScalableDatabasesAreRelationalDatabasesCompatibleWithLargeScaleWebsites.aspx"
target="_blank">»</a></li>
<li>"Saying Yes to NoSQL; Going Steady with Cassandra", John Quinn, <a
href="http://www.stumbleupon.com/su/5099Ti/about.digg.com/node/564" target="_blank">»</a></li>
<li>"Open Source NoSQL Databases Ramp Up", Sean Michael Kerner, <a
href="http://www.databasejournal.com/features/mssql/article.php/3869876/Open-Source-NoSQL-Databases-Ramp-Up.htm"
target="_blank">»</a></li>
<li>"RDF meets NoSQL", Sandro Hawke, <a href="http://decentralyze.com/2010/03/09/rdf-meets-nosql/"
target="_blank">»</a></li>
<li>"NoSQL Databases", harrikauhanen, <a href="http://www.slideshare.net/harrikauhanen/nosql-3376398"
target="_blank">»</a></li>
<li>"SCALE 8x: Relational vs. non-relational", Jake Edge, <a
href="https://lwn.net/SubscriberLink/376626/d394187886b4f76a/">»</a> <span class="red" title="TOP">★</span></li>
<li>"High scalability: SQL and computational complexity", slava / redthinkDB, <a
href="http://www.rethinkdb.com/blog/2010/03/high-scalability-sql-and-computational-complexity/"
target="_blank">»</a></li>
<li>"InfoWorld review: Databases primed for social networks", Peter Wayner, <a
href="http://www.computerworld.com/s/article/9158518/InfoWorld_review_Databases_primed_for_social_networks"
target="_blank">»</a></li>
<li>Reddit.com Discussion, <a
href="http://www.reddit.com/r/programming/comments/b7b1c/ask_proggit_why_the_movement_away_from_rdbms/"
target="_blank">»</a></li>
<li>"Will NoSQL Databases Live up to Their Promise", Neill Levitt on IEEE Computing, <a
href="http://www.computer.org/portal/web/computingnow/0310/theme/computer3" target="_blank">»</a></li>
<li>"I love eventual consistency but...", James Hamilton, <a
href="http://perspectives.mvdirona.com/2010/02/24/ILoveEventualConsistencyBut.aspx" target="_blank">»</a>
</li>
<li>"Brewer's CAP Conjecture is False", NoSql Google Group Discussion / Jim Starkey, <a
href="http://groups.google.com/group/cloud-computing/browse_thread/thread/9e7ed2c394f47921/b1a33ed542dd223c"
target="_blank">»</a></li>
<li>"Design Patterns for Distributed Non-Relational Databases", Tood Lipcon, <a
href="http://www.slideshare.net/guestdfd1ec/design-patterns-for-distributed-nonrelational-databases"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Getting Real about NoSQL and the SQL-Isn't-Scalable Lie", Dennis Forbes, <a
href="http://www.yafla.com/dforbes/Getting_Real_about_NoSQL_and_the_SQL_Isnt_Scalable_Lie/"
target="_blank">»</a></li>
</ul>
<h2>February 2010</h2>
<ul>
<li>"The Database Tea Party: The NoSQL Movement", Dave Kellog, <a
href="http://www.kellblog.com/2010/02/24/the-database-tea-party-the-nosql-movement/" target="_blank">»</a>
<a href="http://www.kellblog.com/2010/03/09/my-thoughts-on-the-nosql-database-tea-party-post/"
target="_blank">»</a></li>
<li>"PyCon 2010 talk:What every developer should know about database", Jonathan Ellis/ Video, <a
href="http://pycon.blip.tv/file/3261223/" target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Open Source NoSQL Databases", mitchp on DZone, <a href="http://java.dzone.com/articles/open-source-nosql-databases"
target="_blank">»</a></li>
<li>"The NoSQL movement is growing, but what is it?", Computerworld UK, Mike Gueltieri, <a
href="http://www.computerworlduk.com/community/blogs/index.cfm?entryid=2807" target="_blank">»</a></li>
<li>"High Performance Scalable Datastore Comparison", Rick Cattell, <a href="http://cattell.net/datastores/"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"SourceForge.net chooses Python, TurboGears and MongoDB to Redesign their Web Site", BitSource.com, <a
href="http://www.thebitsource.com/software-engineering/python/sourceforgenet-chooses-python-turbogears-and-mongodb-to-redesign-their-web-site/"
target="_blank">»</a></li>
<li>"NoSQL And Elastic Caching Platforms Are Kissing Cousins", Mike Gualtieri, <a
href="http://blogs.forrester.com/appdev/2010/02/nosql.html" target="_blank">»</a></li>
<li>"Bend or Break. Choosing a Datastore for Web Applications", Nick August, <a
href="http://www.nickaugust.com/post/393630580/bend-or-break-choosing-a-datastore-for-web"
target="_blank">»</a></li>
<li>"Databases primed for social networks", Peter Wayner, Info World, <a
href="http://www.infoworld.com/d/data-management/infoworld-review-databases-primed-social-networks-828"
target="_blank">»</a></li>
<li>"NoSQL And You - Thoughts On Finding Right Partner In Chrime", Mathias Meyer, <a
href="http://www.paperplanes.de/2010/2/15/nosql_and_you_finding_the_right_partner.html"
target="_blank">»</a></li>
<li>"25+ Alternative & Open Source Databases Engines", WebResources Depot, <a
href="http://www.stumbleupon.com/su/2VtZem/www.webresourcesdepot.com/25-alternative-open-source-databases-engines/"
target="_blank">»</a></li>
<li>"Is NoSQL Finally Going Mainstream?", elegantcode.com blogging community, <a
href="http://elegantcode.com/2010/02/12/is-nosql-finally-going-mainstream/" target="_blank">»</a></li>
<li>"Cloud MapReduce Tricks", Rickey Ho, <a href="http://horicky.blogspot.com/2010/02/cloud-mapreduce-tricks.html"
target="_blank">»</a></li>
<li>"Seeking a database that doesn't suck", mee.nu, <a href="http://ai.mee.nu/seeking_a_database_that_doesnt_suck"
target="_blank">»</a> (a big star for the best humor
;-)
</li>
<li>"Mapreduce & Hadoop Algorithms in Academic Papers", atbrox, <a
href="http://atbrox.com/2010/02/12/mapreduce-hadoop-algorithms-in-academic-papers-updated/"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Graph Databases and the Future of Large-Scale Knowledge Management", Marko A. Rodriguetz, <a
href="http://www.slideshare.net/adorepump/graph-databases-and-the-future-of-largescale-knowledge-management"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Comparison of the Grid/Cloud Computing Frameworks (Hadoop, GridGain, Hazelcast, DAC) - Part I", Krystian Lider, <a
href="http://java.dzone.com/articles/comparison-gridcloud-computing" target="_blank">»</a></li>
<li>"NoSQL in the real world", Dave Rosenberg, <a
href="http://news.cnet.com/8301-13846_3-10451248-62.html?tag=mncol;title" target="_blank">»</a></li>
<li>"NoSQL but so much more", Alexandre Morgaut, <a href="http://www.wakandasoftware.com/blog/nosql-but-so-much-more/"
target="_blank">»</a></li>
<li>"NoSQL GraphDB", Ricky Ho, <a href="http://horicky.blogspot.com/2010/02/nosql-graphdb.html"
target="_blank">»</a></li>
<li>"Wrap your SQL head around Riak's Map-Reduce", seancribbs.com, <a
href="http://seancribbs.com/tech/2010/02/07/wrap-your-sql-head-around-riaks-map-reduce/"
target="_blank">»</a></li>
<li>"The end of SQL and relational databases", David Intersimone, <a
href="http://blogs.computerworld.com/15510/the_end_of_sql_and_relational_databases_part_1_of_3"
target="_blank">»</a></li>
<li>"Why NoSQL Now?", Kent Beck, <a href="http://www.threeriversinstitute.org/blog/?p=450" target="_blank">»</a>
</li>
<li>"Comparing MongoDB and Redis", masonoise, <a
href="http://masonoise.wordpress.com/2010/01/30/comparing-mongodb-and-redis-part-1/" target="_blank">part1</a>,
<a href="http://masonoise.wordpress.com/2010/02/02/comparing-mongodb-and-redis-part-2/" target="_blank">part2</a>
</li>
</ul>
<h2>January 2010</h2>
<ul>
<li>"Google: Cluster Computing and mapReduce", Google Code University, <a
href="http://code.google.com/intl/de-DE/edu/submissions/mapreduce-minilecture/listing.html"
target="_blank">»</a></li>
<li>"Looking to the future with Cassandra", digg, <a href="http://about.digg.com/blog/looking-future-cassandra"
target="_blank">»</a></li>
<li>"Why NoSQL is Here to Stay ...", 10gen, <a href="http://10gen.tumblr.com/post/344597972/why-nosql-is-here-to-stay"
target="_blank">»</a></li>
<li>"MapReduce and Parallel DBMSs: Friends or Foes?", ACM Article, Stonebraker et.al, <a
href="http://cacm.acm.org/magazines/2010/1/55743-mapreduce-and-parallel-dbmss-friends-or-foes/fulltext"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Fighting Hype with Hype - RDBMS FTW!!!1!", Paul Jospeh Davies, <a
href="http://www.davispj.com/2010/01/18/fighting-hype-with-hype.html" target="_blank">»</a></li>
<li>"NoSQL: The dawn of Polyglot Persistence", Stephan Schmidt, <a
href="http://codemonkeyism.com/nosql-polyglott-persistence/" target="_blank">»</a></li>
<li>"NoSQL Alternatives: An Interview with Gigaspaces CTO Nati Shalom", Nati Shalom, <a
href="http://java.dzone.com/articles/no-sql-alternatives" target="_blank">»</a></li>
<li>"Integrating Hadoop Data with Oracle Parallel Processing", oracle blogs data warehouse insider, <a
href="https://blogs.oracle.com/datawarehousing/entry/integrating_hadoop_data_with_o"
target="_blank">»</a></li>
<li>"NoSQL Databases - Part 1 - Landscape", Vineet Gupta, <a
href="http://www.vineetgupta.com/2010/01/nosql-databases-part-1-landscape.html" target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Mapreduce & Hadoop Algorithms in Academic Papers", atbrox, <a
href="http://atbrox.com/2009/10/01/mapreduce-and-hadoop-academic-papers/" target="_blank">»</a></li>
<li>"Die ina Fire", Eric Florenzano, <a href="http://www.eflorenzano.com/blog/post/my-thoughts-nosql/"
target="_blank">»</a></li>
<li>"Oracle - Simple DB: A hybrid solution", Siddharth Anand, <a
href="http://practicalcloudcomputing.com/post/285434697/multimasterreplicationbetweenoracleandsdb"
target="_blank">1»</a> <a href="http://practicalcloudcomputing.com/post/296371796/oraclesdbhybridp1"
target="_blank">2»</a> <a
href="http://practicalcloudcomputing.com/post/297236978/oraclesdbhybridp2-v2" target="_blank">3»</a>
<a href="http://practicalcloudcomputing.com/post/298018874/oraclesdbhybridp3" target="_blank">4»</a>
</li>
<li>"Tokyo Cabinet's Key-Value Database Types", James Edward Gray", <a
href="http://blog.grayproductions.net/articles/tokyo_cabinets_keyvalue_database_types"
target="_blank">»</a></li>
<li>"Notes on distributed Programming and CAP", paulogaspar, <a
href="http://paulogaspar7.blogspot.com/2009/12/my-distributed-programming-and-data.html">»</a></li>
<li>"Hadoop and Parallel Dataflow Programming", Gordon S. Linoff, <a
href="http://www.data-miners.com/blog/2010/01/hadoop-and-parallel-dataflow.html" target="_blank">»</a>
</li>
<li>"Characterizing Enterprise Systems using the CAP theorem", Tyalor Gautier, <a
href="http://javathink.blogspot.com/2010/01/characterizing-enterprise-systems-using.html"
target="_blank">»</a></li>
<li>"NoSQL Databases - Part 1 - Landscape", Vineet Gupta, <a
href="http://www.vineetgupta.com/2010/01/nosql-databases-part-1-landscape.html" target="_blank">»</a> <span class="red" title="TOP">★</span></li>
</ul>
<h2>December 2009</h2>
<ul>
<li>"One year of Redis" (nice confessions of an open source developer), antirez, <a
href="http://antirez.com/post/one-year-of-redis.html" target="_blank">»</a></li>
<li>"A case for hybrid SQL - NoSQL stack", Debasish Ghosh, <a
href="http://debasishg.blogspot.com/2009/12/case-for-hybrid-sql-nosql-stack.html" target="_blank">»</a>
</li>
<li>Some speed comparisons for a non relational use case, Mark Rendle, <a
href="http://groups.google.com/group/mongodb-user/browse_thread/thread/ae0f6aff9bd36baa"
target="_blank">»</a></li>
<li>"Distributed Programming and Data Consistency", Paolo Gaspar, <a
href="http://paulogaspar7.blogspot.com/2009/12/my-distributed-programming-and-data.html"
target="_blank">»</a></li>
<li>"Hadoop and MapReduce: Method for Reading and Writing General Record Structures", data-miners blog, <a
href="http://www.data-miners.com/blog/2009/12/hadoop-and-mapreduce-method-for-reading.html"
target="_blank">»</a></li>
<li>"Running a CouchDB Cluster on Amazon EC2", Stuart Browne?, <a
href="http://blogs.23.nu/c0re/2009/12/running-a-couchdb-cluster-on-amazon-ec2/" target="_blank">»</a></li>
<li>"Ruby and HBase for Beginners", Olexiy Prokhorenko, <a
href="http://a.prokhorenko.us/fun-with-ruby-and-hbase-for-beginners" target="_blank">»</a></li>
<li>"Drop ACID and Think about Data", High Scalability Blog, <a
href="http://highscalability.com/drop-acid-and-think-about-data" target="_blank">»</a></li>
<li>"Getting Started with MongoMapper and Rails",John Nunemaker, <a
href="http://railstips.org/2009/7/23/getting-started-with-mongomapper-and-rails" target="_blank">»</a>
</li>
<li>"Why I think Mongo is to Databases what Rails was to Frameworks", John Nunemaker, <a
href="http://railstips.org/2009/12/18/why-i-think-mongo-is-to-databases-what-rails-was-to-frameworks"
target="_blank">»</a></li>
<li>"CouchDB on Rails", aimee, <a href="http://aimee.mychores.co.uk/2008/12/10/post/330" target="_blank">»</a>
</li>
<li>"Top 5 reasons why you shoudld adopt Cloud Map/Reduce", Huan Liu, <a
href="http://huanliu.wordpress.com/2009/12/17/top-five-reasons-you-should-adopt-cloud-mapreduce/"
target="_blank">»</a></li>
<li>"7 Tips for Improving MapReduce Performance", Cloudera, <a
href="http://www.cloudera.com/blog/2009/12/17/7-tips-for-improving-mapreduce-performance/"
target="_blank">»</a></li>
<li>"Put the Database in Memory", Greg Linden, <a
href="http://glinden.blogspot.com/2009/11/put-that-database-in-memory.html" target="_blank">»</a></li>
<li>"The new Dimension of NoSQL Scalabilioty: Complexity", Alex Popescu, <a
href="http://nosql.mypopescu.com/post/287581423/the-new-dimension-of-nosql-scalability-complexity"
target="_blank">»</a></li>
<li>"Database firms embrace Google MapReduce", Eric Lai, <a
href="http://www.computerworlduk.com/technology/business-intelligence/databases/news/index.cfm?newsid=18048"
target="_blank">»</a></li>
<li>"Hands on Review on the Dynamo Paper", Will Larson, <a
href="http://lethain.com/entry/2009/nov/30/hands-on-review-of-the-dynamo-paper/" target="_blank">»</a>
</li>
<li>"HBase Architecture 101 - Storage", Lars George, <a
href="http://www.larsgeorge.com/2009/10/hbase-architecture-101-storage.html" target="_blank">»</a></li>
<li>"How To Make Life Suck Less!", Bradford Stephens (slides), <a
href="http://www.roadtofailure.com/2009/12/16/presentation-making-life-suck-less-while-building-scalable-systems/"
target="_blank">»</a></li>
<li>"A New Generation of Search Tools", metajack.im, <a
href="http://metajack.im/2009/12/15/a-new-generation-of-search-tools/" target="_blank">»</a></li>
<li>"Musings on NoSQL", Fred Beringer, <a href="http://www.fredberinger.com/musings-on-nosql/"
target="_blank">»</a> <span class="red" title="TOP">★</span>
(good overview)
</li>
<li>"The Commen Principles Behing the NOSQL Alternatives", Nati Shalom, <a
href="http://natishalom.typepad.com/nati_shaloms_blog/2009/12/the-common-principles-behind-the-nosql-alternatives.html"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"Is Cassandra winning the NoSQL race?"., Tony Bain, <a
href="http://blog.tonybain.com/tony_bain/2009/12/is-cassandra-winning-the-nosql-race.html"
target="_blank">»</a></li>
<li>"MongoDB (is) For Rubyists - Boston Ruby", hwawt / kyle 10gen, <a
href="http://www.slideshare.net/kbanker/mongodb-is-for-rubyists-boston-ruby" target="_blank">»</a></li>
<li>"CouchDB naked", Harish Mallipeddi, <a href="http://blog.poundbang.in/post/132952897/couchdb-naked"
target="_blank">»</a></li>
<li>"Redis Benchmarking on Amazon EC2, Flexiscale, and Slicehost", Adam Charnock, <a
href="http://porteightyeight.com/2009/11/09/redis-benchmarking-on-amazon-ec2-flexiscale-and-slicehost/"
target="_blank">»</a></li>
<li>"10 Ways To Complement the Enterprise RDBMS Using Hadoop", Dion Hincliffe, <a
href="http://www.ebizq.net/blogs/enterprise/2009/09/10_ways_to_complement_the_ente.php"
target="_blank">»</a></li>
<li>CouchDB raises 2M !, <a
href="http://www.techcrunch.com/2009/12/10/stealth-startup-relaxed-raises-2-million-from-redpoint-ventures-for-couchdb-support/"
target="_blank">»</a></li>
<li>"Hadoop, Pig and Twitter", Kevin Weil, <a
href="http://www.slideshare.net/kevinweil/hadoop-pig-and-twitter-nosql-east-2009" target="_blank">»</a>
</li>
<li>"Redis benchmark on FusionIO", Ryan Lowe, <a
href="http://www.mysqlperformanceblog.com/2009/12/10/redis-benchmarks-on-fusionio-round-1/"
target="_blank">»</a></li>
<li>"Hadoop at Yahoo!", Eric Baldeschwieler, <a
href="http://nosql.mypopescu.com/post/278147845/presentation-hadoop-at-yahoo" target="_blank">»</a> <a
href="http://nosql.mypopescu.com/post/278147845/presentation-hadoop-at-yahoo"
target="_blank">»</a> <span class="red" title="TOP">★</span></li>
<li>"High Performance at Massive Scale: Lessons Learned at Facebook", Amin Vahdat, <a
href="http://idleprocess.wordpress.com/2009/11/24/presentation-summary-high-performance-at-massive-scale-lessons-learned-at-facebook/"
target="_blank">»</a></li>
<li>Twitter is working on using Cassandra?, <a
href="http://n2.nabble.com/Cassandra-users-survey-td4040068.html#a4040439" target="_blank">»</a></li>
<li>Riak launches EnterpriseDS, PR Newswire, <a
href="http://www.thestreet.com/story/10641968/1/basho-technologies-launches-riak-enterpriseds-for-startups-program.html"
target="_blank">»</a></li>
<li>"NoSQL Required Reading", Kas Thomas, <a href="http://asserttrue.blogspot.com/2009/12/nosql-required-reading.html"
target="_blank">»</a> <span class="red" title="TOP">★</span>
</li>
<li>"CouchDB compaction - big impacts", Enda Farrell, <a
href="http://enda.squarespace.com/tech/2009/12/8/couchdb-compaction-big-impacts.html"
target="_blank">»</a></li>
<li>"NoSQL and the future of cloud databases", Dave Rosenberg, <a
href="http://news.cnet.com/8301-13846_3-10412528-62.html" target="_blank">»</a> </li>
<li>"Future of RDBMS is RAM Clouds & SSD", igvita.com, <a
href="http://www.igvita.com/2009/12/07/future-of-rdbms-is-ram-clouds-ssd/comment-page-1/"
target="_blank">»</a></li>
<li>"NoSQL Week in Review", Alexander Popescu, <a
href="http://nosql.mypopescu.com/post/272903545/nosql-week-review-part-1" target="_blank">»</a></li>
<li>"Readings in Distributed Systems", Maron Trencseni, <a href="http://bytepawn.com/readings-in-distributed-systems/"
target="_blank">»</a></li>