A tracker for the LBRY protocol.
Go to file
2014-07-21 03:54:22 -04:00
backend update docs all around 2014-07-18 19:09:06 -04:00
cmd/chihaya Reorganize main package structure per discussion 2014-07-16 20:33:38 -04:00
config moved together bools 2014-07-21 03:52:56 -04:00
http added Close to tracker 2014-07-21 03:54:22 -04:00
tracker added Close to tracker 2014-07-21 03:54:22 -04:00
.travis.yml update travis to go1.3 & rm redis dependency 2014-06-19 12:35:24 -04:00
AUTHORS Reflect change in sorting in the descriptions 2014-07-06 23:58:34 -04:00
chihaya.go update docs all around 2014-07-18 19:09:06 -04:00
CONTRIBUTORS Reflect change in sorting in the descriptions 2014-07-06 23:58:34 -04:00
example.json Add new option to the example config, and update README 2014-07-17 01:49:41 -04:00
LICENSE Happy uber-belated new year! 2014-07-06 17:56:54 -04:00
README.md Fix wording in a couple comments 2014-07-17 13:43: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.

Features include:

  • Light resource consumption, and fast, asynchronous request processing
  • Full compatibility with what exists of the BitTorrent spec
  • Correct IPv6 support
  • Generic storage interfaces that are easily adapted to work with any database

Technical Details

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

Using Chihaya

Chihaya can be ran as a public or private tracker and is intended to work with existing torrent-indexing web frameworks, such as Gazelle, Batter and any others that spring up. Following the Unix way, it is built to perform one specific task: handling announces and scrapes. By cleanly separating the concerns between tracker and database, we can provide an interface that can be used by system that needs its functionality. See below for more info.

Installing

Chihaya requires Go 1.3+ to build. To install the Chihaya server, run:

$ go get github.com/chihaya/chihaya/cmd/chihaya

Make sure you have your $GOPATH set up correctly, and have $GOPATH/bin in your $PATH. If you're new to Go, an overview of the directory structure can be found here.

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

$ cd $GOPATH/src/github.com/chihaya/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 drivers that will be directly supported "out of the box":

Tracker:

Backend:

To use an external driver, make your own package and call it something like github.com/yourusername/chihaya. Then, import Chihaya like so:

package main

import (
	"github.com/chihaya/chihaya"

	_ "github.com/yourusername/chihaya-custom-backend" // Import any of your own drivers.
)

func main() {
	chihaya.Boot() // Start Chihaya normally.
}

Then, when you do go install github.com/yourusername/chihaya, your own drivers will be included in the binary.

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!