1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
FT.CREATE:
summary: Set the string value of a key
complexity: O(1)
arguments:
-
comment: the index name
name: index_name
type: key
-
name:
- field
- score | NUMERIC
type:
- string
- double | enum
- enum:
- NUMERIC
comment:
pairs of field name and relative weight in scoring.
The weight is a double, but does not need to be normalized.
since: 0.1
returns:
type: status
value: OK on success, error otherwise
FT.ADD:
complexity: O(1)
arguments:
-
comment: the index name
name: index_name
type: key
-
name: docId
type: string
-
name: score
type: double
comment: The document's score, between 0.0 and 1.0
-
command: LANGUAGE
name:
- lang
type:
- string
optional: true
-
name: nosave
type: enum
enum: [NOSAVE]
-
index docId score [LANGUAGE lang] [NOSAVE] FIELDS <field> <text> ....
|