Please enable JavaScript.
Coggle requires JavaScript to display documents.
NoSQL & MongoDB (Request Data (Filter (Simple (PF.find( { "…
NoSQL & MongoDB
Request Data
-
-
Filter
-
Multiple
PF.find( { "borough" : "Brooklyn" , "cuisine" : "Italian" } )
-
-
-
-
Aggregate()
Parameters
-
-
-
{$group : {} }
-
Simple
varGroup = { $group : {"_id" : null, "total" : {$sum : 1} } }
Value
varGroup3 = { $group : {"_id" : "$borough", "total" : {$sum : 1} } }
-
-
-
-
-
-
-
-
-
-
ElasticSearch
-
-
Setup
-
-
curl
-
curl -XPUT -H "Content-Type: application/json" localhost:9200/_bulk --data-binary movies_elastic.json
-
-