DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- add a new index type INVERTED index
- support create INVERTED index with tokenizer and parser and fast fulltext search on text column with type char/varchar/string.
- support create INVERTED index without tokenizer parser and fast equal, range operators on text column with type char/varchar/string.
- support create INVERTED index without tokenizer parser and fast equal, range operators on numeric column with type int*/float*/date/datetime.
...
| Code Block | ||
|---|---|---|
| ||
CREATE TABLE httplogs (
ts datetime,
clientip varchar(20),
request string,
status smallint,
size int,
INDEX idx_size (size) USING INVERTED,
INDEX idx_status (status) USING INVERTED,
INDEX idx_clientip (clientip) USING INVERTED PROPERTIES("tokenizerparser"="none"),
) ENGINE=OLAP
DUPLICATE KEY(ts);
|
...
| Code Block | ||
|---|---|---|
| ||
CREATE INDEX idx_request ON httplogs(request) USING INVERTED PROPERTIES("tokenizerparser"="english") |
- fulltext search query
...