8000 META.json for pgxn. · postgrespro/rum@c2b1767 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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

META.json

Lines changed: 56 additions & 0 deletions
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 <a.korotkov@postgrespro.ru>",
8+
"Oleg Bartunov <o.bartunov@postgrespro.ru>",
9+
"Teodor Sigaev <teodor@postgrespro.ru>",
10+
"Arthur Zakirov <a.zakirov@postgrespro.ru>"
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": "Alexand 7877 er 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)
0