Skip to content

Commit

Permalink
MB-61640: Fuzzy Dynamic Scoring
Browse files Browse the repository at this point in the history
 - Added edit distance to dict entries
  • Loading branch information
Likith101 committed Oct 22, 2024
1 parent 4a202f7 commit 2ffbcfe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions index.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,9 @@ type TermFieldReader interface {
}

type DictEntry struct {
Term string
Count uint64
Term string
Count uint64
EditDistance uint8
}

type FieldDict interface {
Expand Down

0 comments on commit 2ffbcfe

Please sign in to comment.