请允许我说,我有一个拥有产品信息的大型数据库。 我想为这一数据库建立一个搜索引擎,最好是有索引和自动校正特征。 我如何这样做? 我是否可以使用任何良好的图书馆,这样我就不得不从基本图书馆开始。 只是一些基本建议,即联系,将受到高度赞赏。
我熟悉PHP、C#、VB和Java,但我很少了解数据库。
请允许我说,我有一个拥有产品信息的大型数据库。 我想为这一数据库建立一个搜索引擎,最好是有索引和自动校正特征。 我如何这样做? 我是否可以使用任何良好的图书馆,这样我就不得不从基本图书馆开始。 只是一些基本建议,即联系,将受到高度赞赏。
我熟悉PHP、C#、VB和Java,但我很少了解数据库。
如果贵产品数据库创建网页,则最好使用lucene或。 根据你的内容,这些案文确实是好的。
否则,你将利用的文字检索能力。
要想完成汽车,你就必须有一条离线的指数化过程,该过程与大范围相似。 创建另一个称为Index的表格。 它含有你的产品b中的文字和次数。
当用户开始打字时,你就在这个桌子上做麻.检查,并在此基础上进行汽车修理。
如果我的SQL FULLTEXT 检索工作并不满足你们的需要(数据库有自己的索引),两项良好选择是Solr(基于Lucene)和Sphinx。 两者往往都用于在我的SQL数据库顶端提供全功能搜索指数。 http://beerpla.net/2009/09/03/comparison-between-solr-and-sphinx-search-servers-solr-vs-sphinx-fight/“rel=” 比较两个。
I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
我把我的用心从使用QQL转向MySQL。 它与凯科特合作,现在不工作,因为我已经改变,使用MySQL。 这里的错误信息是:
We have a restaurant table that has lat-long data for each row. We need to write a query that performs a search to find all restaurants within the provided radius e.g. 1 mile, 5 miles etc. We have ...
Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...
Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...
What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...
My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...