background preloader

Seo

Facebook Twitter

站长网 | 站长必上的网站 admin5.com - 站长信息、交易、网赚、培训中心. Please bookmark this page on Delicious for your future reference. Download Now! If the Software Installation window is visible click Install Now. If not, then: See if there is a yellow bar near the top of your browser. Click the Edit Options button on the yellow bar. Why do Over 500,000 Webmasters use the SEO Toolbar?

Want to know why Google or Bing ranks pages? This Firefox toolbar is so good that even Microsoft blogged about it. Want to learn more? Download & Installation Instructions: You have to be using Firefox to get this to work. Set up your free SEO Book account, and you will get this tool + 2 other SEO tools valued at over $300 for free. After you install the SEO Toolbar and restart your browser you may want to configure the extension settings to fit your preferences. The Theory... The SEO game is getting more complex, and it is requiring more effort to keep up with the changes. This tool was designed to make it easier to evaluate how strong a competing website is. Rank Checker. The Web Developer's SEO Cheat Sheet. Lucene. Lucene.Net 系列 一 本文介绍了什么是 Lucene,Lucene 能做什么 . 如何从一个文件夹下的所有 txt 文件中查找特定的词 ? 本文将围绕该个实例介绍了 lucene.net 的索引的建立以及如何针对索引进行搜索 .

最后还将给出源代码供大家学习 . 源代码下载 What ’ s Lucene Lucene 是一个信息检索的函数库 (Library), 利用它你可以为你的应用加上索引和搜索的功能 . Lucene 的使用者不需要深入了解有关全文检索的知识 , 仅仅学会使用库中的一个类 , 你就为你的应用实现全文检索的功能 . 不过千万别以为 Lucene 是一个 象 google 那样的搜索引擎 ,Lucene 甚至不是一个应用程序 , 它仅仅是一个工具 , 一个 Library. What Can Lucene Do Lucene 可以对任何的数据做索引和搜索 . How To Use Lucene --- A Simple Example 示例介绍 : 为作为输入参数的文件夹下的所有 txt 类型的文件做索引 , 做好的索引文件放入 index 文件夹 .

然后在索引的基础上对文件进行全文搜索 . 1. IndexWriter writer = new IndexWriter("index", new StandardAnalyzer(), true); IndexDocs(writer, new System.IO.FileInfo(args[0])); writer.Optimize(); writer.Close(); IndexWriter 是对索引进行写操作的一个类 , 利用它可以创建一个索引对象然后往其中添加文件 . 构造函数第一个参数是建立的索引所要放的文件夹的名字 . 第二步就是利用这个 writer 往索引中添加文件 . 第三步进行优化 . 第四步关闭 writer. 下面具体看看第二步 : public static void IndexDirectory(IndexWriter writer, FileInfo file) if (Directory.Exists(file.FullName)) String[] files = Directory.GetFileSystemEntries(file.FullName); if (files ! Try Text 例如.