14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
|
import { syscall } from "./syscall";
|
||
|
|
||
|
export async function fullTextIndex(key: string, value: string) {
|
||
|
return syscall("fulltext.index", key, value);
|
||
|
}
|
||
|
|
||
|
export async function fullTextDelete(key: string) {
|
||
|
return syscall("fulltext.index", key);
|
||
|
}
|
||
|
|
||
|
export async function fullTextSearch(phrase: string, limit: number = 100) {
|
||
|
return syscall("fulltext.search", phrase, limit);
|
||
|
}
|