Książka: NoSQL Distilled: A Brief Guide to the Emerging World of Polyglot Persistence, Pramodkumar J. Sadalage
Na stronie http://ukbooks.pl/pl/book/NoSQL-Distilled-9780321826626 jest podany koszt 19.43 EUR + darmowa przesyłka
NoSQL Databases, Christof Strauch – bardzo ciekawa pozycja
Scalable SQL and NoSQL Data Stores, Rick Cattell
NoSQL Evaluation A Use Case Oriented Survey, Robin Hecht, Stefan Jablonski
Comparative Study of the New Generation, Agile, Scalable, High Performance NOSQL Databases, Clarence J M Tauro, Aravindh S, Shreeharsha A.B
Analysis and Classification of NoSQL Databases and Evaluation of their Ability to Replace an Object-relational Persistence Layer, Kai Orend
A comparison between several NoSQL databases with comments and notes, Tudorica, Bogdan George – niestety, ja nie mam do tej pozycji dostępu
http://en.wikipedia.org/wiki/NoSQL#Key.E2.80.93value_store
http://cattell.net/datastores/
http://nosql-database.org/
http://highlyscalable.wordpress.com/2012/03/01/nosql-data-modeling-techniques/
http://metadata-standards.org/Document-library/Documents-by-number/WG2-N1501-N1550/WG2_N1537_SQL_Standard_and_NoSQL_Databases%202011-05.pdf
http://nosql.findthebest.com/
http://highscalability.com/anti-rdbms-list-distributed-key-value-stores
http://www.versant.com/docs/default-document-library/nosql—beyond-the-key-value-store-for-the-enterprise_wp_low_res.pdf?sfvrsn=2
http://www.neo4j.org/learn/nosql
Download:
http://www.mongodb.org/downloads
http://downloads.mongodb.org/win32/mongodb-win32-x86_64-2.2.3.zip
unzip to c:\mongo
C:\mongo\bin\mongod.exe –dbpath C:\mongo\data //server C:\mongo\bin\mongo.exe //klient db.test.save( { a: 1 } ) db.test.find() md C:\mongo\log md C:\mongo\data\db echo logpath=C:\mongo\log\mongo.log > C:\mongo\mongod.cfg echo dbpath=C:\mongo\data >> C:\mongo\mongod.cfg C:\mongo\bin\mongod.exe –config C:\mongo\mongod.cfg –install net start MongoDB
http://www.mongodb.org/downloads
http://docs.mongodb.org/manual/tutorial/install-mongodb-on-red-hat-centos-or-fedora-linux/
If you are running a 32-bit system, which isn’t recommended for production deployments, place the following configuration in /etc/yum.repos.d/10gen.repo file:
[10gen]name=10gen Repositorybaseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686gpgcheck=0enabled=1
yum install mongo-10gen mongo-10gen-server
Mongo DB – From the scratch.
http://net.tutsplus.com/tutorials/databases/getting-started-with-mongodb/?search_index=2