@@ -27,6 +27,8 @@ pub fn insert(
27
27
False ->
28
28
name
29
29
|> string . append ( " " )
30
+ |> string . append ( string . replace ( name , "_" , " " ) )
31
+ |> string . append ( " " )
30
32
|> string . append ( description )
31
33
|> stem_words
32
34
|> list . try_each ( fn ( word ) { ethos . insert ( index . table , word , name ) } )
@@ -48,6 +50,7 @@ pub fn lookup(
48
50
phrase : String ,
49
51
) -> Result ( List ( String ) , Error ) {
50
52
stem_words ( phrase )
53
+ |> list . flat_map ( expand_search_term )
51
54
|> list . try_map ( ethos . get ( index . table , _) )
52
55
|> result . map ( fn ( names ) {
53
56
names
@@ -62,6 +65,16 @@ pub fn lookup(
62
65
|> result . replace_error ( error . EtsTableError )
63
66
}
64
67
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
+
65
78
fn remove ( index : TextSearchIndex , name : String ) -> Result ( Nil , Error ) {
66
79
ethos . delete_value ( index . table , name )
67
80
|> result . replace_error ( error . EtsTableError )
0 commit comments