build(deps): bump github.com/blevesearch/bleve/v2 from 2.5.3 to 2.5.4

Bumps [github.com/blevesearch/bleve/v2](https://github.com/blevesearch/bleve) from 2.5.3 to 2.5.4.
- [Release notes](https://github.com/blevesearch/bleve/releases)
- [Commits](https://github.com/blevesearch/bleve/compare/v2.5.3...v2.5.4)

---
updated-dependencies:
- dependency-name: github.com/blevesearch/bleve/v2
  dependency-version: 2.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-10-23 17:47:05 +02:00
committed by Ralf Haferkamp
parent 0b4c9becfb
commit fb94f34a1f
62 changed files with 2640 additions and 714 deletions
+13
View File
@@ -65,6 +65,19 @@ type EventIndex interface {
FireIndexEvent()
}
type UpdateFieldInfo struct {
Deleted bool
Store bool
Index bool
DocValues bool
}
type UpdateIndex interface {
Index
UpdateFields(fieldInfo map[string]*UpdateFieldInfo, updatedMapping []byte) error
OpenMeta() error
}
type IndexReader interface {
TermFieldReader(ctx context.Context, term []byte, field string, includeFreq, includeNorm, includeTermVectors bool) (TermFieldReader, error)
+1 -1
View File
@@ -26,7 +26,7 @@ const (
const (
BM25Scoring = "bm25"
TFIDFScoring = "tfidf"
TFIDFScoring = "tf-idf"
)
// Scoring model indicates the algorithm used to rank documents fetched