Git Product home page Git Product logo

bleve-bench's People

Contributors

otoolep avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

redsift

bleve-bench's Issues

source data with long lines doesn't work

I tried to use this with a wikipedia data dump and I think it choked because the lines are ridiculously long.

I think the problem is that scanner has a fixed-size buffer, and if a line exceeds that it just returns an error and stops. I rewrote that section to use:

reader := bufio.NewReader(f)
var l []byte
l, err = reader.ReadBytes(byte('\n'))
for err == nil {
    docs = append(docs, l)
    l, err = reader.ReadBytes(byte('\n'))
}

Then it worked fine with this data set.

not actually indexing data

Unfortunately, the current test doesn't seem to actually be indexing data (looking at boltdb files I only see keys for the back index). I believe the problem is that the struct only contains data of type []byte, which is not currently supported by bleve. See https://github.com/otoolep/bleve-bench/blob/master/bleve_indexer.go#L70

Also, the mapping sets up a field named "body", but then the struct being indexed doesn't use that name.

I would recommend you change that field to type string, and name it Body with struct tag json:"body".

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.