Giter Club home page Giter Club logo

Comments (2)

abhinavdangeti avatar abhinavdangeti commented on June 7, 2024

Your sample code is not setting the field for the query string query - which means the engine will look for the criteria in the composite field _all. So mapping.DefaultAnalyzer (standard) is being applied to your search criteria, which converts userId to userid before searching - which is unavailable in your index.

Here's amended code:

package main

import (
	"fmt"
	"os"
	"testing"

	"github.com/blevesearch/bleve/v2"
	"github.com/blevesearch/bleve/v2/analysis/analyzer/keyword"
)

func TestKeyword(t *testing.T) {
	indexName := "testkeyword"
	os.RemoveAll(indexName)
	mapping := bleve.NewIndexMapping()

	mapping.DefaultAnalyzer = keyword.Name
	index, _ := bleve.New(indexName, mapping)
	user := struct {
		Id   string
		Name string
	}{
		Id:   "userId",
		Name: "testkeyword",
	}
	index.Index(user.Id, user)

	termQuery := bleve.NewTermQuery("userId")
	termQuery.SetField("Id")
	termRequest := bleve.NewSearchRequest(termQuery)
	termRequest.Fields = []string{"*"}
	termResult, _ := index.Search(termRequest)
	fmt.Println("termQuery total:", termResult.Total)

	stringQuery := bleve.NewQueryStringQuery("userId")
	stringRequest := bleve.NewSearchRequest(stringQuery)
	stringRequest.Fields = []string{"*"}
	stringResult, _ := index.Search(stringRequest)
	// shouldn't be zero
	fmt.Println("stringQuery total:", stringResult.Total)

}

from bleve.

springrain avatar springrain commented on June 7, 2024

Thank you very much, you answered my doubts

from bleve.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.