tracker/README.md

82 lines
2.9 KiB
Markdown
Raw Normal View History

2013-08-13 07:41:45 +02:00
# Chihaya [![Build Status](https://travis-ci.org/pushrax/chihaya.png?branch=master)](https://travis-ci.org/pushrax/chihaya)
2013-06-22 01:31:32 +02:00
2013-08-13 07:41:45 +02:00
Chihaya is a high-performance [BitTorrent tracker](http://en.wikipedia.org/wiki/BitTorrent_tracker)
2013-08-30 03:26:27 +02:00
written in the Go programming language. It is still heavily under development and the current `master` branch
2013-08-30 03:48:48 +02:00
should not be used in production.
Planned features include:
2013-06-22 01:31:32 +02:00
2013-08-30 03:26:27 +02:00
- Light resource consumption
- Fast request processing, sparing the network from exorbitant connection counts
2013-08-21 23:24:36 +02:00
- Maximum compatibility with what exists of the BitTorrent spec
- Correct IPv6 support
2013-08-30 03:26:27 +02:00
- Generic storage interfaces that are easily adapted to work with any existing web application
2013-08-23 21:39:42 +02:00
- Scaling properties that directly correlate with those of the chosen data stores
2013-08-21 23:24:36 +02:00
2013-08-30 03:48:48 +02:00
### Technical Details
2013-06-22 01:31:32 +02:00
2013-08-30 03:26:27 +02:00
See [the wiki](https://github.com/pushrax/chihaya/wiki) for a discussion of the design behind Chihaya.
2013-06-22 01:31:32 +02:00
2013-08-30 03:48:48 +02:00
## Using Chihaya
2013-08-30 04:02:12 +02:00
Chihaya is intended to work with existing torrent indexing web frameworks, such as [batter] and [Gazelle].
Following the Unix way, it is built to perform a specific task, and interface with any system that
needs its functionality. See [below](#drivers) for more info.
[batter]: https://github.com/wafflesfm/batter
[gazelle]: https://github.com/whatcd/gazelle
2013-08-30 03:48:48 +02:00
### Installing
2013-06-22 01:31:32 +02:00
2013-08-30 03:48:48 +02:00
Make sure you have your `$GOROOT` and `$GOPATH` set up correctly, and have your `$GOBIN` in your `$PATH`.
2013-06-22 01:31:32 +02:00
2013-08-13 07:43:49 +02:00
```sh
2013-08-30 03:26:27 +02:00
$ go get github.com/pushrax/chihaya
2013-08-13 07:43:49 +02:00
```
2013-06-22 01:31:32 +02:00
2013-08-30 03:48:48 +02:00
### Configuring
Configuration is done in a JSON formatted file specified with the `-config`
flag. An example configuration file can be found
[here](https://github.com/pushrax/chihaya/blob/master/config/example.json).
### Running the tests
2013-08-29 06:47:37 +02:00
```sh
$ export TESTCONFIGPATH=$GOPATH/src/chihaya/config/example.json
$ go get github.com/pushrax/chihaya
$ go test -v ./...
```
2013-08-30 04:02:12 +02:00
## Drivers
2013-08-30 03:26:27 +02:00
Chihaya is designed to remain agnostic about the choice of data store for an
application, and it is straightforward to [implement a new driver]. However, there
are a number of directly supported drivers:
2013-08-23 21:39:42 +02:00
2013-08-30 03:26:27 +02:00
Cache:
2013-08-30 03:48:48 +02:00
* [redis](http://redis.io) — allows for multiple tracker instances to run at the same time for the same swarm
* memory — only a single instance can run, but it requires no extra setup
2013-06-22 01:31:32 +02:00
2013-08-30 03:26:27 +02:00
Storage:
2013-08-23 21:39:42 +02:00
* [batter-postgres](https://github.com/wafflesfm/batter)
2013-08-30 03:26:27 +02:00
* [gazelle-mysql](https://github.com/whatcd/gazelle)
2013-08-23 21:39:42 +02:00
2013-08-30 03:26:27 +02:00
[implement a new driver]: https://github.com/pushrax/chihaya/wiki/Implementing-a-driver
2013-08-13 07:41:45 +02:00
## Contributing
2013-08-30 03:26:27 +02:00
If you're interested in contributing, please contact us via IRC in **[#chihaya] on
[freenode]** or post to the GitHub issue tracker. Please don't write
massive patches with no prior communication, as it will most
2013-08-21 23:24:36 +02:00
likely lead to confusion and time wasted for everyone. However, small
2013-08-30 03:26:27 +02:00
unannounced fixes are always welcome!
2013-08-13 07:41:45 +02:00
2013-08-21 23:24:36 +02:00
[#chihaya]: http://webchat.freenode.net?channels=chihaya
2013-08-30 03:26:27 +02:00
[freenode]: http://freenode.net
And remember: good gophers always use gofmt!