0
0

Merge pull request #161 from nimishzynga/master

Minor change in example code in README
This commit is contained in:
Marty Schoch 2015-02-17 11:47:55 +05:30
commit 251e4717a2

View File

@ -28,9 +28,9 @@ Discuss usage and development of bleve in the [google group](https://groups.goog
## Indexing
message := struct{
Id string,
From string,
Body string,
Id string
From string
Body string
}{
Id: "example",
From: "marty.schoch@gmail.com",
@ -38,7 +38,10 @@ Discuss usage and development of bleve in the [google group](https://groups.goog
}
mapping := bleve.NewIndexMapping()
index, _ := bleve.New("example.bleve", mapping)
index, err := bleve.New("example.bleve", mapping)
if err != nil {
panic(err)
}
index.Index(message.Id, message)
## Querying