English 中文(简体)
Isql数据库的关键词/性能
原标题:keyword/phrase density from a mysql database

我设立了一个LAMP,我的Sql数据库主要是产品目录。 由于随着新产品的增加,数据库经常发生变化,因此人工保存关键词和通用短语清单的工作繁琐。 保留关键词/缩略语清单的必要性是双重的:(1) 字眼和其他营销举措;(2) 现场的联系结构。

我先把Zentd Lucene港口作为我现场所有搜索的支柱。 使用卢塞恩确定关键词密度和/或短语密度等物是否可行? 另一个搜索引擎是什么?

For further clarity of what I m looking for, let s say I have a catalog of laptops. I might have various models of Dell Inspiron, Dell Latitude, Macbook, Gateway, Lenovo, and Acer laptops. For a keyword density report, I d like to see that the words "laptop" and "notebook" are popular, as well as perhaps "Dell Inspiron" or "Dell Inspiron laptops" or "Lenovo laptops."

谁能建议启动什么? 象卢塞内、Sphinx、Solr等整个搜索模块世界一滴。 我不知道我是否走错的道路。

感谢!

最佳回答

Lucene is capable of giving you a list of (keyword, frequency) pairs. See this question, or this blog post.

问题回答

暂无回答




相关问题
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 ...

热门标签