1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
table_create Documents TABLE_HASH_KEY ShortText
[[0,0.0,0.0],true]
column_create Documents content COLUMN_SCALAR Text
[[0,0.0,0.0],true]
table_create Terms TABLE_PAT_KEY|KEY_NORMALIZE ShortText --default_tokenizer TokenBigram
[[0,0.0,0.0],true]
column_create Terms document_index COLUMN_INDEX|WITH_POSITION Documents content
[[0,0.0,0.0],true]
load --table Documents
[
["_key", "content"],
["About Groonga", "Groonga is an open-source fulltext search engine and column store. It lets you write high-performance applications that requires fulltext search."]
]
[[0,0.0,0.0],1]
select Documents --match_columns content --query 'Groonga' --output_columns 'snippet_html("")'
[[0,0.0,0.0],[[[1],[["snippet_html",null]],[null]]]]
|