diff options
author | Till <2353100+S7evinK@users.noreply.github.com> | 2022-09-07 18:15:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 18:15:54 +0200 |
commit | d5876abbe9f5484768f603ec91a567b8650e6e73 (patch) | |
tree | e8288bac7557a840ed636391ce5afbc7059dc993 /setup/jetstream | |
parent | 31f4ae8997af7e939f505107341b86b2abd3fd9a (diff) |
Fulltext implementation incl. config (#2480)
This adds the main component of the fulltext search.
This PR doesn't do anything yet, besides creating an empty fulltextindex
folder if enabled. Indexing events is done in a separate PR.
Diffstat (limited to 'setup/jetstream')
-rw-r--r-- | setup/jetstream/streams.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setup/jetstream/streams.go b/setup/jetstream/streams.go index a06a1266..c07d3a0b 100644 --- a/setup/jetstream/streams.go +++ b/setup/jetstream/streams.go @@ -29,6 +29,7 @@ var ( OutputReadUpdate = "OutputReadUpdate" RequestPresence = "GetPresence" OutputPresenceEvent = "OutputPresenceEvent" + InputFulltextReindex = "InputFulltextReindex" ) var safeCharacters = regexp.MustCompile("[^A-Za-z0-9$]+") |