Difference between revisions of "Main Page"
From NoSQLZoo
Line 25: | Line 25: | ||
==Tutorials: Learn NoSQL in stages== | ==Tutorials: Learn NoSQL in stages== | ||
; [[FIND basics|0 FIND basics]]:Some examples of common queries. | ; [[FIND basics|0 FIND basics]]:Some examples of common queries. | ||
− | ; [[AGGREGATE | + | ; [[AGGREGATE world|1 AGGREGATE world]]:In which we query the world collection and make use of aggregate functions. |
− | + | ; [[MAPREDUCE basics|2 MAPREDUCE basics]]:Using MapReduce. | |
− | ; [[MAPREDUCE basics| | + | ; [[MAPREDUCE elite|3 MAPREDUCE elite]]:MapReduce questions using the Elite Dangerous dataset. |
− | ; [[MAPREDUCE elite| | ||
==Reference: How to...== | ==Reference: How to...== |
Revision as of 11:13, 27 July 2015
#ENCODING import io import sys sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-16') #MONGO from pymongo import MongoClient client = MongoClient() client.progzoo.authenticate('scott','tiger') db = client['progzoo'] #PRETTY import pprint pp = pprint.PrettyPrinter(indent=4)
Learn NoSQL using: MongoDB, PyMongo, and Python3.4
Show all the data concering France.
pp.pprint(list( db.world.find({"name":"France"}) ))
Tutorials: Learn NoSQL in stages
- 0 FIND basics
- Some examples of common queries.
- 1 AGGREGATE world
- In which we query the world collection and make use of aggregate functions.
- 2 MAPREDUCE basics
- Using MapReduce.
- 3 MAPREDUCE elite
- MapReduce questions using the Elite Dangerous dataset.
Reference: How to...
- 1 Pattern Matching (RegEx)
- Some pattern matching queries.