aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/blevesearch/bleve/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/blevesearch/bleve/README.md')
-rw-r--r--vendor/github.com/blevesearch/bleve/README.md45
1 files changed, 25 insertions, 20 deletions
diff --git a/vendor/github.com/blevesearch/bleve/README.md b/vendor/github.com/blevesearch/bleve/README.md
index ab69a486a0..fa11f906d5 100644
--- a/vendor/github.com/blevesearch/bleve/README.md
+++ b/vendor/github.com/blevesearch/bleve/README.md
@@ -4,6 +4,7 @@
[![Join the chat at https://gitter.im/blevesearch/bleve](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/blevesearch/bleve?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![codebeat](https://codebeat.co/badges/38a7cbc9-9cf5-41c0-a315-0746178230f4)](https://codebeat.co/projects/github-com-blevesearch-bleve)
[![Go Report Card](https://goreportcard.com/badge/blevesearch/bleve)](https://goreportcard.com/report/blevesearch/bleve)
+[![Sourcegraph](https://sourcegraph.com/github.com/blevesearch/bleve/-/badge.svg)](https://sourcegraph.com/github.com/blevesearch/bleve?badge) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
modern text indexing in go - [blevesearch.com](http://www.blevesearch.com/)
@@ -33,29 +34,33 @@ Discuss usage and development of bleve in the [google group](https://groups.goog
## Indexing
- message := struct{
- Id string
- From string
- Body string
- }{
- Id: "example",
- From: "marty.schoch@gmail.com",
- Body: "bleve indexing is easy",
- }
-
- mapping := bleve.NewIndexMapping()
- index, err := bleve.New("example.bleve", mapping)
- if err != nil {
- panic(err)
- }
- index.Index(message.Id, message)
+```go
+message := struct{
+ Id string
+ From string
+ Body string
+}{
+ Id: "example",
+ From: "marty.schoch@gmail.com",
+ Body: "bleve indexing is easy",
+}
+
+mapping := bleve.NewIndexMapping()
+index, err := bleve.New("example.bleve", mapping)
+if err != nil {
+ panic(err)
+}
+index.Index(message.Id, message)
+```
## Querying
- index, _ := bleve.Open("example.bleve")
- query := bleve.NewQueryStringQuery("bleve")
- searchRequest := bleve.NewSearchRequest(query)
- searchResult, _ := index.Search(searchRequest)
+```go
+index, _ := bleve.Open("example.bleve")
+query := bleve.NewQueryStringQuery("bleve")
+searchRequest := bleve.NewSearchRequest(query)
+searchResult, _ := index.Search(searchRequest)
+```
## License