forked from paradedb/paradedb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMETA.json.in
More file actions
55 lines (54 loc) · 1.42 KB
/
Copy pathMETA.json.in
File metadata and controls
55 lines (54 loc) · 1.42 KB
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
{
"name": "pg_search",
"abstract": "@CRATE_DESC@",
"description": "ParadeDB pg_search is a Postgres extension that enables fast full-text, faceted and hybrid search over Postgres tables using the BM25 algorithm. It is built on top of Tantivy, the Rust-based alternative to Apache Lucene, using pgrx.",
"version": "@CRATE_VERSION@",
"maintainer": [
"ParadeDB <support@paradedb.com>"
],
"license": "agpl_3",
"provides": {
"pg_search": {
"abstract": "Postgres for Search and Analytics",
"file": "pg_search/src/lib.rs",
"docfile": "pg_search/README.md",
"version": "@CRATE_VERSION@"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "14.0.0"
}
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/paradedb/paradedb/issues/"
},
"repository": {
"url": "git://github.com/paradedb/paradedb.git",
"web": "https://github.com/paradedb/paradedb/",
"type": "git"
}
},
"generated_by": "ParadeDB",
"meta-spec": {
"version": "1.0.0",
"url": "https://pgxn.org/meta/spec.txt"
},
"tags": [
"paradedb",
"search",
"analytics",
"bm25",
"text search",
"full text search",
"full-text search",
"hybrid search",
"faceted search",
"facets",
"columnar",
"olap"
]
}