Skip to content

Commit c2b1767

Browse files
author
Alexander Korotkov
committed
META.json for pgxn.
1 parent bc919f7 commit c2b1767

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

Diff for: META.json

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"name": "RUM",
3+
"abstract": "RUM index access method",
4+
"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.",
5+
"version": "1.1.0",
6+
"maintainer": [
7+
"Alexander Korotkov <[email protected]>",
8+
"Oleg Bartunov <[email protected]>",
9+
"Teodor Sigaev <[email protected]>",
10+
"Arthur Zakirov <[email protected]>"
11+
],
12+
"license": {
13+
"PostgreSQL": "http://www.postgresql.org/about/licence"
14+
},
15+
"prereqs": {
16+
"runtime": {
17+
"requires": {
18+
"PostgreSQL": "9.6.0"
19+
},
20+
"recommends": {
21+
"PostgreSQL": "9.6.5"
22+
}
23+
}
24+
},
25+
"provides": {
26+
"rum": {
27+
"file": "rum--1.1.sql",
28+
"docfile": "README.md",
29+
"version": "1.1.0",
30+
"abstract": "RUM index access method"
31+
}
32+
},
33+
"resources": {
34+
"homepage": "https://github.com/postgrespro/rum",
35+
"bugtracker": {
36+
"web": "https://github.com/postgrespro/rum/issues"
37+
},
38+
"repository": {
39+
"url": "https://github.com/postgrespro/rum.git",
40+
"web": "https://github.com/postgrespro/rum",
41+
"type": "git"
42+
}
43+
},
44+
"generated_by": "Alexander Korotkov",
45+
"meta-spec": {
46+
"version": "1.0.0",
47+
"url": "http://pgxn.org/meta/spec.txt"
48+
},
49+
"tags": [
50+
"index",
51+
"search",
52+
"GIN",
53+
"full text",
54+
"additional information"
55+
]
56+
}

0 commit comments

Comments
 (0)