File: setup.log

package info (click to toggle)
groonga 15.0.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 163,080 kB
  • sloc: ansic: 770,564; cpp: 48,925; ruby: 40,447; javascript: 10,250; yacc: 7,045; sh: 5,602; python: 2,821; makefile: 1,672
file content (66 lines) | stat: -rw-r--r-- 2,144 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
57
58
59
60
61
62
63
64
65
66
Execution example::

  $ groonga-suggest-create-dataset ${DB_PATH} query
  > plugin_register suggest/suggest
  true
  > table_create event_type TABLE_HASH_KEY ShortText
  true
  > table_create bigram TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto
  true
  > table_create kana TABLE_PAT_KEY ShortText --normalizer NormalizerAuto
  true
  > table_create item_query TABLE_PAT_KEY ShortText --default_tokenizer TokenDelimit --normalizer NormalizerAuto
  true
  > column_create bigram item_query_key COLUMN_INDEX|WITH_POSITION item_query _key
  true
  > column_create item_query kana COLUMN_VECTOR kana
  true
  > column_create kana item_query_kana COLUMN_INDEX item_query kana
  true
  > column_create item_query freq COLUMN_SCALAR Int32
  true
  > column_create item_query last COLUMN_SCALAR Time
  true
  > column_create item_query boost COLUMN_SCALAR Int32
  true
  > column_create item_query freq2 COLUMN_SCALAR Int32
  true
  > column_create item_query buzz COLUMN_SCALAR Int32
  true
  > table_create pair_query TABLE_HASH_KEY UInt64
  true
  > column_create pair_query pre COLUMN_SCALAR item_query
  true
  > column_create pair_query post COLUMN_SCALAR item_query
  true
  > column_create pair_query freq0 COLUMN_SCALAR Int32
  true
  > column_create pair_query freq1 COLUMN_SCALAR Int32
  true
  > column_create pair_query freq2 COLUMN_SCALAR Int32
  true
  > column_create item_query co COLUMN_INDEX pair_query pre
  true
  > table_create sequence_query TABLE_HASH_KEY ShortText
  true
  > table_create event_query TABLE_NO_KEY
  true
  > column_create sequence_query events COLUMN_VECTOR|RING_BUFFER event_query
  true
  > column_create event_query type COLUMN_SCALAR event_type
  true
  > column_create event_query time COLUMN_SCALAR Time
  true
  > column_create event_query item COLUMN_SCALAR item_query
  true
  > column_create event_query sequence COLUMN_SCALAR sequence_query
  true
  > table_create configuration TABLE_HASH_KEY ShortText
  true
  > column_create configuration weight COLUMN_SCALAR UInt32
  true
  > load --table configuration
  > [
  > {"_key": "query", "weight": 1}
  > ]
  1