https://github.com/iolanguage/tagdb
https://github.com/iolanguage/tagdb
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iolanguage/tagdb
- Owner: IoLanguage
- License: bsd-3-clause
- Created: 2018-03-11T12:01:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-17T09:37:48.000Z (about 8 years ago)
- Last Synced: 2025-01-21T00:48:42.182Z (over 1 year ago)
- Language: C
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TagDB
> DEPRECATED
Binding for tagdb - a tagging database usefull for flickr-like tag searches.
Example use:
```Io
tdb := TagDB clone
tdb setPath("test")
tdb open
writeln("size = ", tdb size)
tdb atKeyPutTags("f430 for sale", list("red", "ferrari"))
tdb atKeyPutTags("lotus esprit", list("lotus", "esprit"))
writeln("size = ", tdb size)
keys := tdb keysForTags(list("lotus"))
writeln("keys = ", tdb symbolForId(keys at(0)))
tdb close
tdb delete
```
# Installation
`tagdb` should be installed and foundable in your system. Then:
```
eerie install https://github.com/IoLanguage/TagDB.git
```