Experiments with bleve, repositories and parsing itunes

This commit is contained in:
Deluan 2016-02-24 15:30:28 -05:00
parent c8b7695b09
commit 9a55fa1c64
8 changed files with 93 additions and 1 deletions

27
main.go
View file

@ -8,6 +8,33 @@ import (
)
func main() {
//// open a new index
//itunes.LoadFolder("iTunes Music Library.xml")
//
//mapping := bleve.NewIndexMapping()
//index, err := bleve.New("example.bleve", mapping)
//if (err != nil) {
// index, err = bleve.Open("example.bleve")
//}
//
//// index some data
//doc := struct {
// Id string
// Value string
//}{
// Id: "01",
// Value: "deluan cotts quintao",
//}
//err = index.Index("01", doc)
//fmt.Println(err)
//
//// search for some text
//query := bleve.NewMatchQuery("*cotts*")
//search := bleve.NewSearchRequest(query)
//searchResults, err := index.Search(search)
//fmt.Println(err)
//fmt.Println(searchResults.Hits)
if beego.BConfig.RunMode == "dev" {
beego.BConfig.WebConfig.DirectoryIndex = true
beego.BConfig.WebConfig.StaticDir["/swagger"] = "swagger"