forked from postgrespro/rum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
META.json
56 lines (56 loc) · 1.67 KB
/
META.json
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
{
"name": "RUM",
"abstract": "RUM index access method",
"description": "RUM is an extended version of GIN (generalized inverted index) access method. Unlike GIN, RUM stores additional information in posting lists/trees besides item pointers. For example, those additional information might be lexemes positions or timestamps. Thanks to that RUM accelerate certain types of queries in orders of magnitude.",
"version": "1.1.0",
"maintainer": [
"Alexander Korotkov <[email protected]>",
"Oleg Bartunov <[email protected]>",
"Teodor Sigaev <[email protected]>",
"Arthur Zakirov <[email protected]>"
],
"license": {
"PostgreSQL": "http://www.postgresql.org/about/licence"
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.6.0"
},
"recommends": {
"PostgreSQL": "9.6.5"
}
}
},
"provides": {
"rum": {
"file": "rum--1.1.sql",
"docfile": "README.md",
"version": "1.1.0",
"abstract": "RUM index access method"
}
},
"resources": {
"homepage": "https://github.com/postgrespro/rum",
"bugtracker": {
"web": "https://github.com/postgrespro/rum/issues"
},
"repository": {
"url": "https://github.com/postgrespro/rum.git",
"web": "https://github.com/postgrespro/rum",
"type": "git"
}
},
"generated_by": "Alexander Korotkov",
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"index",
"search",
"GIN",
"full text",
"additional information"
]
}