写了个mongodb的gdal
driver,放在了github上,如果你需要,欢迎加入mongogis group。直接的效果是使得QGIS, GeoServer, MapServer,
ArcGIS等GIS软件能够处理存储在MongoDB集群中的地理数据。https://github.com/m...
分类:
数据库 时间:
2014-06-04 15:42:46
阅读次数:
339
截图:1.Command+shift+3:全屏截图,保存截图到桌面
2.Command+shift+4:鼠标选定区域截图,保存截图到桌面显示隐藏文件: defaults write com.apple.finder
AppleShowAllFiles -bool true/false
分类:
其他好文 时间:
2014-06-04 14:36:53
阅读次数:
233
1.运行终端,执行命令行进入missing file目录,然后运行svn delete
nameOfMissingFile或git rm nameOfMissingFile2.删除隐藏的.svn文件。命令行运行defaults write
com.apple.finder AppleShowAllF...
分类:
其他好文 时间:
2014-06-03 16:20:06
阅读次数:
405
1. 简介
索引是为了加速查询。
如果没有索引,mongodb在查询时会做表扫描,如果集合很大时,这个查询会非常慢。
一般对创建查询时的键都建立索引。
为排序字段建立索引,如果对未建立索引的字段sort,mongodb会将所有的数据取到内存中来排序,
如果集合大到不能在内存中排序,则mongodb会报错。...
分类:
数据库 时间:
2014-06-02 15:16:19
阅读次数:
267
1. Install GNUstepsudo apt-get install gnustep
gnustep-devel2. Write hello world program, and save as hello.m#import int main
(int argc, const char * ...
分类:
其他好文 时间:
2014-06-02 12:49:08
阅读次数:
185
MongoDB客户端工具MongoVUE破解版
附上百度网盘地址:http://pan.baidu.com/s/1w8OyU
整体感觉和mysql-front有点类似,截图如下:...
分类:
数据库 时间:
2014-06-02 12:27:11
阅读次数:
380
Mongodb安装与启动
1.首先根据对应的操作系统下载对应的Mongodb版本,本文描述为64bit windows7环境下操作。
2.解压压缩包放置到你指定的位置,如E:\dev。
在上图所示的文件夹下,也可以自定义其他路径,用于放置数据文件。
在该路径下新建一个logs文件夹,存放日志。在logs下新建一个mongodb.log(很重要)。
3.mongodb的启动和mys...
分类:
数据库 时间:
2014-06-02 12:23:11
阅读次数:
345
【题目】
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same value.
【题意】
判断了两个二叉树是否相等
【思路】
递归...
分类:
其他好文 时间:
2014-06-02 11:03:03
阅读次数:
205
#过滤oracle警告日志文件ORA-错误
$c=Get-ContentC:\script.txt|select-string-pattern"ora-"
#判断ORA-错误存在条件
#若$c返回值为null,则输出1返回值结束循环
if($c-eq$null)
{
write-host"STATE_OK"
$STATE_OK={return1;}
$b=&$STATE_OK
$b
}
#若$c返回值不为空,..
分类:
其他好文 时间:
2014-06-02 03:26:07
阅读次数:
197
写了一个powershell脚本测试脚本,结果执行的时候报错
$a=Get-ContentC:\script.txt|select-string-pattern"ora"
if($a-eq$null)
{
write-host"error"
}
else
{
write-host"OK"
}
PSD:\>.\pshell.ps1
无法加载文件D:\pshell.ps1,因为在此系统中禁止执行脚本。有关详..
分类:
其他好文 时间:
2014-06-02 03:17:04
阅读次数:
244