11 2013 档案
Lucene 4.0
摘要:关于4.0的Update Index ,Create Index /* * Create Index */ public static void createIndex() throws IOException{ try { Directory directory=FSDirectory.open(new File(indexPath)); IndexWriterConfig config=new IndexWriterConfig(Version.LUCENE_44,analyzer); ... 阅读全文
posted @ 2013-11-19 08:41 无觉-李敏 阅读(335) 评论(1) 推荐(0) 编辑
Lucene Field
摘要:org.apache.lucene.demo.IndexFiles类中,使用递归的方式去索引文件。在构造了一个IndexWriter索引器之后,就可以向索引器中添加Doucument了,执行真正地建立索引的过程。遍历每个目录,因为每个目录中可能还存在目录,进行深度遍历,采用递归技术找到处于叶节点处的文件(普通的具有扩展名的文件,比如my.txt文件),然后调用如下代码中红色部分: static void indexDocs(IndexWriter writer, File file) throws IOException { // file可以读取 if (file.canR... 阅读全文
posted @ 2013-11-15 10:26 无觉-李敏 阅读(245) 评论(0) 推荐(0) 编辑
JavaScript 同源策略
摘要:在JavaScript安全性限制Same-Origin Policy(同源策略)=>JavaScript只能访问与包含它的文档在同一域下的内容。同源=>域名+协议+端口相同。 阅读全文
posted @ 2013-11-08 16:16 无觉-李敏 阅读(176) 评论(0) 推荐(0) 编辑
素数
摘要:#region 素数 /// /// 获取素数 /// /// 给定最大范围 static void GetPrimeNumber(int maxNum = 200) { if (maxNum < 1) { Console.WriteLine("请输入非负数"); return; } ///10W 以内的数字可以这么写 或者 2*i 缩小范围 ... 阅读全文
posted @ 2013-11-02 16:04 无觉-李敏 阅读(222) 评论(0) 推荐(0) 编辑
内存映射和独立存贮器
摘要:#region 内存映射 /// /// 内存映射 /// static void MappingMemory() { using (var mmFile = MemoryMappedFile.CreateFromFile("d:mappingmemory.txt", FileMode.Create, "fileHandle", 1024 * 1024)) { string valueToWrite = "Written to th... 阅读全文
posted @ 2013-11-02 16:00 无觉-李敏 阅读(225) 评论(1) 推荐(0) 编辑
读取XML
摘要:public sealed class ConfigManger { public XDocument XmlDocs { set; get; } string path = @"{0}\Configuration\Server\{1}"; public ConfigManger() { LoadFiles(); } public static ConfigManger Instance { get { ... 阅读全文
posted @ 2013-11-02 15:57 无觉-李敏 阅读(218) 评论(1) 推荐(0) 编辑