English 中文(简体)
延长/改变Zentd_Search_Lucene搜索方式
原标题:Extending / changing how Zend_Search_Lucene searches

我目前正在使用Zentd_Search_Lucene,对目前大约1 000份文件进行索引和搜索。 我想做的是,从目前的违约情况来看,发动机的记分如何打上文件。

Zend_Search_Lucene在一份文件中点击次数,这样一份文件,其编号为PHP,其分数将比文件高出十倍,只有3比PHP。 我试图做的是,根据这些关键词的打击,通过了一些关键词和核心。 e.g.

我通过5个关键词:PHP,MySQL,Javascript ,,<>tong>CSS,供我查阅该指数。 一份文件有3份与这些关键词相对应,1份文件有4份对应文件,其中4份与得分最高。 该文件中这些话的事例数目与我无关。

现在,我很快看到了Zend_Search_Lucene_Search_Similarity。 我必须承认,我不知道如何利用这一手段来完成我之后的工作(或者说是光明的)。

我是否想利用卢塞尼语做些什么,或是在那里找到更好的解决办法?

最佳回答

关于我在Zend_Search_Lucene_Search_Search_Similarity section 上的理解,首先,将默认的类似类别延伸到高于tf(定期频率)方法,以便改变分数:

class MySimilarity extends Zend_Search_Lucene_Search_Similarity {    
    public function tf($freq) {
        return 1.0; // overriding default sqrt($freq);
    }
}

因此,应当考虑到相应的数字。 你们是否认为这够了?

之后,在指数化之前,将其定为违约相似算法:

Zend_Search_Lucene_Search_Similarity::setDefault(new MySimilarity());
问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?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 = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签