File: commands.yaml

package info (click to toggle)
redisearch 1%3A1.2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,076 kB
  • sloc: ansic: 79,131; python: 3,419; pascal: 1,644; makefile: 431; yacc: 422; sh: 5
file content (56 lines) | stat: -rw-r--r-- 1,328 bytes parent folder | download | duplicates (2)
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> ....