A tracker for the LBRY protocol.
Go to file
2013-09-03 23:58:13 -04:00
cache Improved redis examples 2013-09-03 23:58:13 -04:00
config gofmt, style improvements 2013-08-31 15:06:42 -04:00
models Added comparision benchmarks, restructured tests 2013-09-01 16:10:24 -04:00
server generic test config 2013-08-29 00:47:37 -04:00
storage stats test, add/remove torrent handlers, init batter driver 2013-08-28 23:44:45 -04:00
.travis.yml generic test config 2013-08-29 00:47:37 -04:00
AUTHORS initial 2013-06-21 19:31:32 -04:00
CONTRIBUTORS initial 2013-06-21 19:31:32 -04:00
LICENSE initial 2013-06-21 19:31:32 -04:00
main.go initial architecture overhaul 2013-08-23 15:39:42 -04:00
README.md fast-forward README [ci skip] 2013-08-31 15:21:35 -04:00

Chihaya Build Status

Chihaya is a high-performance BitTorrent tracker written in the Go programming language. It is still heavily under development and the current master branch should not be used in production.

Planned features include:

  • Light resource consumption
  • Fast request processing, sparing the network from exorbitant connection counts
  • Maximum compatibility with what exists of the BitTorrent spec
  • Correct IPv6 support
  • Generic storage interfaces that are easily adapted to work with any existing web application
  • Scaling properties that directly correlate with those of the chosen data stores

Technical Details

See the wiki for a discussion of the design behind Chihaya.

Using Chihaya

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 for more info.

Installing

Make sure you have your $GOROOT and $GOPATH set up correctly, and have your $GOBIN in your $PATH.

$ go get github.com/pushrax/chihaya

Configuring

Configuration is done in a JSON formatted file specified with the -config flag. An example configuration file can be found here.

Running the tests

$ export TESTCONFIGPATH=$GOPATH/src/chihaya/config/example.json
$ go get github.com/pushrax/chihaya
$ go test -v ./...

Drivers

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:

Cache:

  • redis — 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

Storage:

Contributing

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 likely lead to confusion and time wasted for everyone. However, small unannounced fixes are always welcome!

And remember: good gophers always use gofmt!