Skip to content

seafileltd/bluge

This branch is 3 commits ahead of zincsearch/bluge:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7705bc2 · Apr 10, 2024
Jul 20, 2022
Jul 20, 2022
Jun 4, 2022
Aug 30, 2020
Apr 10, 2024
Sep 27, 2020
Mar 22, 2024
Feb 12, 2021
Aug 30, 2020
Jul 20, 2022
Jun 2, 2022
Sep 27, 2020
Aug 30, 2020
Dec 18, 2021
Sep 27, 2020
Jul 20, 2022
Sep 27, 2020
Jun 2, 2022
Jul 20, 2022
Jul 20, 2022
Jun 2, 2022
Jun 2, 2022
Jul 20, 2022
Sep 27, 2020
Sep 27, 2020
Jun 2, 2022
Mar 22, 2024
Mar 22, 2024
Nov 10, 2021
Sep 27, 2020
Jun 7, 2022
Sep 27, 2020
Sep 27, 2020

Repository files navigation

Bluge Bluge

PkgGoDev Tests Lint

modern text indexing in go - blugelabs.com

Features

  • Supported field types:
    • Text, Numeric, Date, Geo Point
  • Supported query types:
    • Term, Phrase, Match, Match Phrase, Prefix
    • Conjunction, Disjunction, Boolean
    • Numeric Range, Date Range
  • BM25 Similarity/Scoring with pluggable interfaces
  • Search result match highlighting
  • Extendable Aggregations:
    • Bucketing
      • Terms
      • Numeric Range
      • Date Range
    • Metrics
      • Min/Max/Count/Sum
      • Avg/Weighted Avg
      • Cardinality Estimation (HyperLogLog++)
      • Quantile Approximation (T-Digest)

Indexing

    config := bluge.DefaultConfig(path)
    writer, err := bluge.OpenWriter(config)
    if err != nil {
        log.Fatalf("error opening writer: %v", err)
    }
    defer writer.Close()

    doc := bluge.NewDocument("example").
        AddField(bluge.NewTextField("name", "bluge"))

    err = writer.Update(doc.ID(), doc)
    if err != nil {
        log.Fatalf("error updating document: %v", err)
    }

Querying

    reader, err := writer.Reader()
    if err != nil {
        log.Fatalf("error getting index reader: %v", err)
    }
    defer reader.Close()

    query := bluge.NewMatchQuery("bluge").SetField("name")
    request := bluge.NewTopNSearch(10, query).
        WithStandardAggregations()
    documentMatchIterator, err := reader.Search(context.Background(), request)
    if err != nil {
        log.Fatalf("error executing search: %v", err)
    }
    match, err := documentMatchIterator.Next()
    for err == nil && match != nil {
        err = match.VisitStoredFields(func(field string, value []byte) bool {
            if field == "_id" {
                fmt.Printf("match: %s\n", string(value))
            }
            return true
        })
        if err != nil {
            log.Fatalf("error loading stored fields: %v", err)
        }
        match, err = documentMatchIterator.Next()
    }
    if err != nil {
        log.Fatalf("error iterator document matches: %v", err)
    }

Repobeats

Alt

License

Apache License Version 2.0