## 检索查询语句你会写吗?
```
错误的写法,不走索引
select * from table where title like '%产品%';
正确的写法,利用索引
select content,info,keyword... from table where title like '产品%';
select content,info,keyword... from table where title like '%产品';
title必须是索引,查两次后排重作为结果
```
## 什么时候需要独立做检索?
>[success]数据量大的时候,上面查的卡的时候,或者是老板有需求的时候,对,这个一定要加钱,因为很难。
## 用什么做检索
大神级:自己写;大牛级:elasticsearch(java)
我们用 http://www.xunsearch.com/
如何用?看上面网址的文档。
看不懂?可以让作者帮你写(付费)。