<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_kwklover</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/750/rss</id><updated>2011-12-19T07:42:05Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/750/rss"/><entry><id>http://www.cnblogs.com/kwklover/archive/2008/03/11/1100556.html</id><title type="text">Lucene 1.9 多目录搜索的的一个bug</title><summary type="text">这个问题解决有一段时间了。刚才在Lucene的群有朋友提问了这个问题。所以方便其他朋友遇到此问题时，好参考下。特贴出来在需要搜索多个索引目录，多个字段的时候，发现有错误，提示的大概意思是(具体忘记了),关键词已经存在字典中。研究Lucene的源代码发现，是Lucene.net 1.9 rc1的一个bug : 具体代码在Lucene.Net.Search命名空间下的Query类的Combine me...</summary><published>2008-03-11T06:41:00Z</published><updated>2008-03-11T06:41:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2008/03/11/1100556.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2008/03/11/1100556.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2008/02/04/1064639.html</id><title type="text">众里寻他千百度，蓦然回首，那人却在灯火阑珊处</title><summary type="text">有时候 ，经常搜索一些关于搜索引擎的技术文章，时有文章提到，基于网页库，基于模板的spider的说法，这些概念对于没有在专业搜索引擎公司工作经历的我来说，实在不好理解，联系到好久以前看到腾讯招聘“搜索引擎编辑”的要求，有两条比较有趣：工作职责： 1,制作定向采集模版2 ......... n工作要求： 1,熟悉计算机操作，熟练掌握OFFICE软件，能够很快学会xml,html基本语法 2,其他均和...</summary><published>2008-02-04T15:31:00Z</published><updated>2008-02-04T15:31:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2008/02/04/1064639.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2008/02/04/1064639.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/11/23/969633.html</id><title type="text">问题总结：判断MS SQLSERVER临时表是否存在</title><summary type="text">drop table#tempcitysselect * into #tempcitys from hy_citys上面的语句第一次运行的时候就肯定出错了,但第二次就不会。因为select * into #tempcitys from hy_citys自动创建了临时表#tempcitys ，第一次临时表不存在，drop table自然就出错了。刚开始没反应过来，select * into是会自动创...</summary><published>2007-11-23T02:48:00Z</published><updated>2007-11-23T02:48:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/11/23/969633.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/11/23/969633.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/10/10/919759.html</id><title type="text">小技巧：处理ASP提交的参数是经过GB2312 URL编码的</title><summary type="text">最近在一个地方的门户网站，基于PDO规范整合了动易，网人分类信息，OBlog，Discuz!NT论坛，可是在整合动易和DNT的时候，在中文用户名字的处理上出现了编码问题。动易是GB2312的，而DNT是UTF-8的，虽然也可以把DNT转成GB2312的，不过显然不是一个好的方案。论坛上各式各样的文字都有，很容易出现乱码问题。幸好在河源同行告诉我他写的一个帖子：处理ASP提交的参数是经过GB2312...</summary><published>2007-10-10T08:21:00Z</published><updated>2007-10-10T08:21:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/10/10/919759.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/10/10/919759.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/07/28/834819.html</id><title type="text">Lucene.net实现自定义排序笔记</title><summary type="text">在Lucene.net实现自定义排序，需要实现两个Lucene.Net.Search的两个接口：public interface SortComparatorSource{ ScoreDocComparator NewComparator(IndexReader reader , System.String fieldname) ;}public interface ScoreDocCompara...</summary><published>2007-07-28T09:21:00Z</published><updated>2007-07-28T09:21:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/07/28/834819.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/07/28/834819.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/07/12/815509.html</id><title type="text">模版引擎AderTemplate源代码分析笔记</title><summary type="text">AderTemplate是一个小型的模板引擎。无论是拿来直接使用还是用来研究模板引擎实现方式，都是一个不错的选择。本文尝试对其源代码做一些分析。</summary><published>2007-07-12T06:37:00Z</published><updated>2007-07-12T06:37:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/07/12/815509.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/07/12/815509.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/05/11/743485.html</id><title type="text">T-SQL复习总结--用T-SQL创建，修改，管理，删除数据库</title><summary type="text">T-SQL复习总结(1)--用T-SQL创建，修改，管理，删除数据库</summary><published>2007-05-11T15:26:00Z</published><updated>2007-05-11T15:26:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/05/11/743485.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/05/11/743485.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/03/19/679425.html</id><title type="text">面向搜索的中文分词设计</title><summary type="text">我开发的中文分词程序，开源发布,其实哪个中文分词的整体架构是比较糟糕的。架构是否优秀决定了很多构思无法实现，思考了比较久，最近准备开发第二版，抛弃以前的架构，重新实现。下面是一些设计和构思。计划是两周时间开发完成beta版(如果因为工作关系，也有可能放弃),主要是希望和大家交流下设计思想，我觉得构思很重要，想得实现不了，可以慢慢研究，想不到才是头大的问题，希望能和大家一起交流下：新版中文分词构想(...</summary><published>2007-03-19T01:47:00Z</published><updated>2007-03-19T01:47:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/03/19/679425.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/03/19/679425.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/03/19/679327.html</id><title type="text">我开发的中文分词程序，开源发布</title><summary type="text">功能介绍：请参看花2周时间开发的中文分词终于有点小样了(有些功能没体现出来)本中文分词是基于匹配模式开发的中文分词程序，为本人练手作品。也可以直接使用。但不建议。因为整体架构有一些基础性问题。不过做为开发中文分词的参考，相信还是有一定价值的。最近吕震宇老师发布了ICTCLAS的C#版SharpICTCLAS。很优秀的中文分词程序。我的这个和它根本不是一个级别的。不过在自己的应用中，估计还是不能直接...</summary><published>2007-03-18T22:14:00Z</published><updated>2007-03-18T22:14:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/03/19/679327.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/03/19/679327.html"/></entry><entry><id>http://www.cnblogs.com/kwklover/archive/2007/03/01/660714.html</id><title type="text">需要整理研究的搜索引擎技术点(目录，无实际价值)</title><summary type="text">目录，里面内容有些本人已可实现，有些还在探索中,无实际价值，无实际内容，仅仅为个人整理知识点参考之用。</summary><published>2007-03-01T12:58:00Z</published><updated>2007-03-01T12:58:00Z</updated><author><name>kwklover</name><uri>http://www.cnblogs.com/kwklover/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kwklover/archive/2007/03/01/660714.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kwklover/archive/2007/03/01/660714.html"/></entry></feed>
