<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/saswp" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/saswp" type="application/rss+xml"></fs:self_link><lastBuildDate>Sat, 18 Jul 2009 22:56:00 GMT</lastBuildDate><title>saswp的专栏</title><link>http://blog.csdn.net/saswp/</link><item><title>也公布一段精简的分词代码</title><link>http://blog.csdn.net/saswp/archive/2009/07/18/4360481.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/4360481.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/4360481.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4360481</trackback:ping><description>&lt;br /&gt; 公司要在产品中增加一个知识库检索功能，需要用到从一段文字中分析出关键字来，即将一句话中的中文文字分成中文词语或词组，忽略半角符号。从网上Google一下，现成的分词代码有好几个版本，甚至都能直接拿来使用，但我发现占用资料、分词速度还是不尽如人意，后来试着直接使用泛型的List，发现代码即精简，效率也不错。&lt;br /&gt;    /// &lt;br /&gt;    /// 从一句话中识别出关键字，供查询知识库。&lt;br /&gt;    /// 目前的关键字库为从网上下载，并没有按知识库优化，建议最终的关键字是按知识库优化之后的&lt;br /&gt;    /// &lt;br /&gt;   public  class CFindKeyWord&lt;br /&gt;    {&lt;br /&gt;       private static List keyWords = null;&lt;br /&gt;       /// &lt;br /&gt;       /// 从一句话中识别出关键字，供查询知识库。&lt;br /&gt;       /// &lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/4360481.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/247118232/saswp/csdn.net/s.gif?r=http://blog.csdn.net/saswp/archive/2009/07/18/4360481.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247118232/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247118232/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 19 Jul 2009 06:56:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2009/07/18/4360481.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2009/07/18/4360481.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2009/07/18/4360481.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247118232/1178313</fs:itemid></item><item><title>一个精简的缓存器</title><link>http://blog.csdn.net/saswp/archive/2009/07/18/4360441.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/4360441.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/4360441.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4360441</trackback:ping><description>&lt;br /&gt;在优化一个Web Service客户端应用程序时，为了减少访问服务压力，提高客户端的响应速度，写了一个精简的缓存器，实现一次读取，重复使用，定时淘汰功能。代码简洁明了，可见C#功能之强大。&lt;br /&gt;一、缓存器代码&lt;br /&gt;  /// &lt;br /&gt;    /// 一个超时淘汰的缓存器&lt;br /&gt;    /// &lt;br /&gt;    public class Caches&lt;br /&gt;    {&lt;br /&gt;        private uint timeOut = 60 * 5;&lt;br /&gt;        private System.Threading.Timer outTimer  = null;&lt;br /&gt;        public Caches()&lt;br /&gt;        {&lt;br /&gt;            outTimer = new System.Threading.Timer(new System.Threading.TimerCallback(OutTimerCallback), null, 60 * 1000, 6&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/4360441.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/247112337/saswp/csdn.net/s.gif?r=http://blog.csdn.net/saswp/archive/2009/07/18/4360441.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247112337/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247112337/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 19 Jul 2009 06:24:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2009/07/18/4360441.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2009/07/18/4360441.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2009/07/18/4360441.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247112337/1178313</fs:itemid></item><item><title>C#中如何控制缓冲空间的上限</title><link>http://blog.csdn.net/saswp/archive/2007/12/31/2007112.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/2007112.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/2007112.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2007112</trackback:ping><description>C# 缓冲 空间上限 限制 多线程 通讯 同步&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/2007112.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247112344/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247112344/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 01 Jan 2008 06:35:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2007/12/31/2007112.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2007/12/31/2007112.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2007/12/31/2007112.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247112344/1178313</fs:itemid></item><item><title>企业IT运维综合管理系统（CooCare Enterprise Edition V1.0）白皮书</title><link>http://blog.csdn.net/saswp/archive/2007/12/30/2004656.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/2004656.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/2004656.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2004656</trackback:ping><description>产品白皮书&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/2004656.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247112346/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247112346/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 30 Dec 2007 20:27:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2007/12/30/2004656.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2007/12/30/2004656.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2007/12/30/2004656.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247112346/1178313</fs:itemid></item><item><title>NetAdvantage控件的汉化办法</title><link>http://blog.csdn.net/saswp/archive/2007/06/11/1648030.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/1648030.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/1648030.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1648030</trackback:ping><description>NetAdvantage 汉化&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/1648030.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247112353/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247112353/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 12 Jun 2007 02:47:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2007/06/11/1648030.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2007/06/11/1648030.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2007/06/11/1648030.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247112353/1178313</fs:itemid></item><item><title>C#中读取“已注册的文件类型”的图标及读取指定文件图标的方法</title><link>http://blog.csdn.net/saswp/archive/2005/03/30/334421.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/334421.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/334421.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=334421</trackback:ping><description>C# 读取图标 指定文件的图标 已注册的文件类型&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/334421.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247112354/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247112354/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 31 Mar 2005 05:10:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2005/03/30/334421.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2005/03/30/334421.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2005/03/30/334421.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247112354/1178313</fs:itemid></item><item><title>用C#实现的开发平台示意图</title><link>http://blog.csdn.net/saswp/archive/2005/01/07/244469.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/244469.aspx</wfw:comment><slash:comments>3</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/244469.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=244469</trackback:ping><description>用C#实现的开发平台&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/244469.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247112355/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247112355/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 08 Jan 2005 06:45:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2005/01/07/244469.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2005/01/07/244469.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2005/01/07/244469.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247112355/1178313</fs:itemid></item><item><title>对“[原创]EMAIL发送系统(C#+基于SMTP认证)”的改写</title><link>http://blog.csdn.net/saswp/archive/2005/01/06/243090.aspx</link><wfw:comment>http://blog.csdn.net/saswp/comments/243090.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/saswp/comments/commentRss/243090.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=243090</trackback:ping><description>EMAIL发送系统(C#+基于SMTP认证) 改版&lt;img src =&quot;http://blog.csdn.net/saswp/aggbug/243090.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/saswp/247112356/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/saswp/247112356/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 07 Jan 2005 07:05:00 +0800</pubDate><author>saswp</author><comments>http://blog.csdn.net/saswp/archive/2005/01/06/243090.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/saswp/archive/2005/01/06/243090.aspx</guid><dc:creator>saswp</dc:creator><fs:srclink>http://blog.csdn.net/saswp/archive/2005/01/06/243090.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/saswp/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/saswp/~1178332/247112356/1178313</fs:itemid></item></channel></rss>