关于Windows下安装MongoDB步骤,可以参考写的笔记第二部分https://blog.csdn.net/u014465934/article/details/80727901,然后关于服务启动其实有两种方法,评论区没有分开,一种是直接设置路径,一种利用配置文件,具体可以看上面文章介绍。
2018-06-21
为老师点个赞,全程看完记录了下来: https://github.com/gdufeZLYL/blog/tree/master/MongoDB/%E5%85%A5%E9%97%A8
2018-06-13
跟着视频做的笔记,https://github.com/gdufeZLYL/blog/blob/master/MongoDB/%E5%85%A5%E9%97%A8/MongoDB%E7%9A%84%E5%9F%BA%E6%9C%AC%E6%93%8D%E4%BD%9C.md
2018-06-12
自己跟着视频在windows实践的,https://github.com/gdufeZLYL/blog/blob/master/MongoDB/%E5%85%A5%E9%97%A8/%E6%90%AD%E5%BB%BA%E7%AE%80%E5%8D%95%E7%9A%84MongoDB%E6%9C%8D%E5%8A%A1%E5%99%A8.md
2018-06-12
{
<location field>: {
$geoWithin: {
$box: [
[ <bottom left coordinates> ],
[ <upper right coordinates> ]
]
}
}
}
所以矩形第一个参数是左下,第二个是右上
<location field>: {
$geoWithin: {
$box: [
[ <bottom left coordinates> ],
[ <upper right coordinates> ]
]
}
}
}
所以矩形第一个参数是左下,第二个是右上
2018-05-23