Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
laigood committed Oct 25, 2012
0 parents commit 37ef49b
Show file tree
Hide file tree
Showing 69 changed files with 166,516 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
@@ -0,0 +1,8 @@
/data
/work
/logs
/.idea
/target
/out
.DS_Store
*.iml
182 changes: 182 additions & 0 deletions README.textile
@@ -0,0 +1,182 @@
Ansj Analysis for ElasticSearch
==================================

The Ansj Analysis plugin integrates Lucene Ansj analyzer into elasticsearch, support customized dictionary.


Version
-------------
master | 0.19.4 -> master
1.0.0 | 0.19.4 -> master


Install
-------------

In order to install the plugin, simply run:

<pre>
cd bin
plugin -install laigood/elasticsearch-analysis-ansj/1.0.0
</pre>

also download the dict files,unzip these dict file to your elasticsearch's config folder,such as: your-es-root/config/ansj

<pre>
cd config
wget http://github.com/downloads/laigood/elasticsearch-analysis-ansj/ansj.zip --no-check-certificate
unzip ansj.zip
rm ansj.zip
</pre>

you need a service restart after that!

Dict Configuration (es-root/config/ansj/userLibrary.dic)

Analysis Configuration (elasticsearch.yml)
-------------

<Pre>
index:
analysis:
analyzer:
ansj:
alias: [ansj_analyzer]
type: org.elasticsearch.index.analysis.AnsjAnalyzerProvider
</pre>
Or
<pre>
index.analysis.analyzer.ik.type : "ansj"
</pre>

Mapping Configuration
-------------

Here is a quick example:
1.create a index

<pre>

curl -XPUT http://localhost:9200/index

</pre>

2.create a mapping

<pre>

curl -XPOST http://localhost:9200/index/fulltext/_mapping -d'
{
"fulltext": {
"_all": {
"indexAnalyzer": "ansj",
"searchAnalyzer": "ansj",
"term_vector": "no",
"store": "false"
},
"properties": {
"content": {
"type": "string",
"store": "no",
"term_vector": "with_positions_offsets",
"indexAnalyzer": "ansj",
"searchAnalyzer": "ansj",
"include_in_all": "true",
"boost": 8
}
}
}
}'
</pre>

3.indexing some docs

<pre>

curl -XPOST http://localhost:9200/index/fulltext/1 -d'
{content:"美国留给伊拉克的是个烂摊子吗"}
'

curl -XPOST http://localhost:9200/index/fulltext/2 -d'
{content:"公安部:各地校车将享最高路权"}
'

curl -XPOST http://localhost:9200/index/fulltext/3 -d'
{content:"中韩渔警冲突调查:韩警平均每天扣1艘中国渔船"}
'

curl -XPOST http://localhost:9200/index/fulltext/4 -d'
{content:"中国驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首"}
'
</pre>

4.query with highlighting

<pre>

curl -XPOST http://localhost:9200/index/fulltext/_search -d'
{
"query" : { "term" : { "content" : "中国" }},
"highlight" : {
"pre_tags" : ["<tag1>", "<tag2>"],
"post_tags" : ["</tag1>", "</tag2>"],
"fields" : {
"content" : {}
}
}
}
'
</pre>

here is the query result

<pre>

{
"took": 14,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 2,
"max_score": 2,
"hits": [
{
"_index": "index",
"_type": "fulltext",
"_id": "4",
"_score": 2,
"_source": {
"content": "中国驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首"
},
"highlight": {
"content": [
"<tag1>中国</tag1>驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首 "
]
}
},
{
"_index": "index",
"_type": "fulltext",
"_id": "3",
"_score": 2,
"_source": {
"content": "中韩渔警冲突调查:韩警平均每天扣1艘中国渔船"
},
"highlight": {
"content": [
"均每天扣1艘<tag1>中国</tag1>渔船 "
]
}
}
]
}
}

</pre>


have fun.

0 comments on commit 37ef49b

Please sign in to comment.