{"id":23588109,"url":"https://github.com/sonirico/go-fist","last_synced_at":"2025-05-07T10:34:43.908Z","repository":{"id":57553906,"uuid":"193969645","full_name":"sonirico/go-fist","owner":"sonirico","description":"The Golang client library for Fist (Full Index Search Text) search engine","archived":false,"fork":false,"pushed_at":"2019-07-20T11:17:04.000Z","size":25,"stargazers_count":7,"open_issues_count":3,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-07T10:34:31.637Z","etag":null,"topics":["client","fist","full-text-search","go","golang","library","search-engine"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sonirico.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-06-26T20:00:48.000Z","updated_at":"2021-07-05T04:28:09.000Z","dependencies_parsed_at":"2022-09-26T18:51:06.970Z","dependency_job_id":null,"html_url":"https://github.com/sonirico/go-fist","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonirico%2Fgo-fist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonirico%2Fgo-fist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonirico%2Fgo-fist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonirico%2Fgo-fist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sonirico","download_url":"https://codeload.github.com/sonirico/go-fist/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252860253,"owners_count":21815487,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["client","fist","full-text-search","go","golang","library","search-engine"],"created_at":"2024-12-27T05:12:27.416Z","updated_at":"2025-05-07T10:34:43.880Z","avatar_url":"https://github.com/sonirico.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/sonirico/go-fist.svg?branch=master)](https://travis-ci.org/sonirico/go-fist)\n[![Coverage Status](https://coveralls.io/repos/github/sonirico/go-fist/badge.svg?branch=master)](https://coveralls.io/github/sonirico/go-fist?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/github.com/sonirico/go-fist)](https://goreportcard.com/report/github.com/sonirico/go-fist)\n[![GoDoc](https://godoc.org/github.com/sonirico/go-fist?status.svg)](https://godoc.org/github.com/sonirico/go-fist)\n[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/sonirico/go-fist/issues)\n[![dependencies: none](https://img.shields.io/badge/dependencies-none-brightgreen.svg)]()\n\n\nGolang client to interact with [Fist](https://github.com/f-prime/fist), a minimalist full-text index search server with\na focus on keeping things simple\n\n## Install\n\n```\ngo get -u github.com/sonirico/go-fist\n```\n\n## Examples\n\n```go\nimport fistClient \"github.com/sonirico/go-fist\"\n\n// ...\n\nclient, err := fistClient.NewFistClient(\"localhost\", \"5575\")\nif err != nil {\n    fmt.Println(\"Connection Error! Is Fist up and running?\")\n    return\n}\n// Obtain server version\nversion, _ := client.Version()\nfmt.Println(\"Server version is \" + version)\n// Index some data\nclient.Index(\"articles\", \"a an the\")\nclient.Index(\"TODO\", \"wash the car\")\nclient.Index(\"TODO\", \"walk the dog\")\nclient.Index(\"podcasts\", \"DSE - Daily software engineering\")\n// Search for \"the\" keyword\ndocuments := client.Search(\"the\")\nfmt.Println(documents) // [\"articles\", \"TODO\"]\n// Not needing articles?\nclient.Delete(\"the\")\ndocuments = client.Search(\"the\")\nfmt.Println(documents) // []\n```\n\nMore detailed examples can be found under the `./examples` subpackage\n\n## Release strategy\n\nEvery time a new version for the server shall be released, so will the\nclient so as to keep a direct and easy to follow client/server version\nmirroring\n\n## License\n\nReleased under the terms of the MIT license. Refer to [LICENSE](LICENSE)\nfor more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonirico%2Fgo-fist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonirico%2Fgo-fist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonirico%2Fgo-fist/lists"}