Skip to content

Commit 3f59646

Browse files
committed
feat!: add ts ranking in search
1 parent 9074baf commit 3f59646

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

myrasearch.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ import (
44
"encoding/json"
55
"errors"
66
"fmt"
7+
"math"
8+
"reflect"
9+
"strings"
10+
711
"github.com/joho/godotenv"
812
"github.com/raralabs/tsv-search-interface/pkg/models"
913
"github.com/raralabs/tsv-search-interface/pkg/utils"
1014
"github.com/raralabs/tsv-search-interface/pkg/utils/db/pgdb"
1115
"gorm.io/gorm"
12-
"math"
13-
"reflect"
14-
"strings"
1516
)
1617

1718
// ClientInterface exposes the needed methods to external usage
@@ -58,7 +59,7 @@ func (s Client) Search(slug, search string, pagination ...int) ([]models.Respons
5859
search = strings.ReplaceAll(search, " ", ":*&")
5960
var model []models.ResponseSearchIndex
6061
query := fmt.Sprintf("SELECT id, table_info, action_info FROM \"%s\".search_indices ", slug)
61-
err := s.db.Raw(query+" WHERE tsv_text @@ to_tsquery('simple',? || ':*') ORDER BY id OFFSET ? LIMIT ?", search, offset, limit).Scan(&model).Error
62+
err := s.db.Raw(query+" WHERE tsv_text @@ to_tsquery('simple',? || ':*') ORDER BY ts_rank_cd(tsv_text, to_tsquery('simple','ho' || ':*')) DESC OFFSET ? LIMIT ?", search, offset, limit).Scan(&model).Error
6263
return model, err
6364
}
6465

@@ -77,7 +78,7 @@ func (s Client) InternalSearch(slug, search string, tableInfo string, pagination
7778
search = strings.ReplaceAll(search, " ", ":*&")
7879
var model []string
7980
query := fmt.Sprintf("SELECT id FROM \"%s\".internal_search_indices ", slug)
80-
err := s.db.Raw(query+" WHERE table_info = ? and tsv_text @@ to_tsquery('simple',? || ':*') ORDER BY id OFFSET ? LIMIT ?", tableInfo, search, offset, limit).Scan(&model).Error
81+
err := s.db.Raw(query+" WHERE table_info = ? and tsv_text @@ to_tsquery('simple',? || ':*') ORDER BY ts_rank_cd(tsv_text, to_tsquery('simple','ho' || ':*')) DESC OFFSET ? LIMIT ?", tableInfo, search, offset, limit).Scan(&model).Error
8182
return model, err
8283
}
8384

0 commit comments

Comments
 (0)