mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Experiments with bleve, repositories and parsing itunes
This commit is contained in:
parent
c8b7695b09
commit
9a55fa1c64
8 changed files with 93 additions and 1 deletions
27
main.go
27
main.go
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue