Skip to content

Commit 07f0a40

Browse files
committed
Improve search
Closes #47
1 parent 9745460 commit 07f0a40

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

src/packages/text_search.gleam

+13
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ pub fn insert(
2727
False ->
2828
name
2929
|> string.append(" ")
30+
|> string.append(string.replace(name, "_", " "))
31+
|> string.append(" ")
3032
|> string.append(description)
3133
|> stem_words
3234
|> list.try_each(fn(word) { ethos.insert(index.table, word, name) })
@@ -48,6 +50,7 @@ pub fn lookup(
4850
phrase: String,
4951
) -> Result(List(String), Error) {
5052
stem_words(phrase)
53+
|> list.flat_map(expand_search_term)
5154
|> list.try_map(ethos.get(index.table, _))
5255
|> result.map(fn(names) {
5356
names
@@ -62,6 +65,16 @@ pub fn lookup(
6265
|> result.replace_error(error.EtsTableError)
6366
}
6467

68+
/// Some words have common misspellings or associated words so we add those to
69+
/// the search to get all appropriate results.
70+
fn expand_search_term(term: String) -> List(String) {
71+
case term {
72+
"postgres" | "postgresql" -> ["postgres", "postgresql"]
73+
"regex" | "regexp" -> ["regex", "regexp"]
74+
term -> [term]
75+
}
76+
}
77+
6578
fn remove(index: TextSearchIndex, name: String) -> Result(Nil, Error) {
6679
ethos.delete_value(index.table, name)
6780
|> result.replace_error(error.EtsTableError)

test/packages/text_search_test.gleam

+20
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,23 @@ pub fn ignored_test() {
7878
|> should.be_ok
7979
|> should.equal(["clean_bson"])
8080
}
81+
82+
pub fn word_in_title_test() {
83+
let index = text_search.new()
84+
let assert Ok(_) = text_search.insert(index, "gleam_regexp", "")
85+
86+
text_search.lookup(index, "regexp")
87+
|> should.be_ok
88+
|> should.equal(["gleam_regexp"])
89+
}
90+
91+
// regex also searches for regexp
92+
pub fn extra_regex_test() {
93+
let index = text_search.new()
94+
let assert Ok(_) = text_search.insert(index, "gleam_regexp", "")
95+
let assert Ok(_) = text_search.insert(index, "third_party_regex", "")
96+
97+
text_search.lookup(index, "regex")
98+
|> should.be_ok
99+
|> should.equal(["gleam_regexp", "third_party_regex"])
100+
}

0 commit comments

Comments
 (0)