Skip to content

Instantly share code, notes, and snippets.

@curtkim
Last active January 28, 2016 08:36
Show Gist options
  • Save curtkim/8a3a3ec9c52490c2d935 to your computer and use it in GitHub Desktop.
Save curtkim/8a3a3ec9c52490c2d935 to your computer and use it in GitHub Desktop.
mongo
db.path.aggregate(
[
{
$group : {
_id : "$hour",
count: { $sum: 1 }
}
}
]
)
db.createCollection( "path", { storageEngine: {wiredTiger: { configString: 'block_compressor=zlib' }}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment