Ejemplo n.º 1
0
func init() {
	log.Info("Registering mongodb")
	store.Register("mongodb", new(MongoDB))
}
Ejemplo n.º 2
0
func init() {
	log.Info("Initing sqlstore")
	store.Register("sqlstore", new(Sql))
}
Ejemplo n.º 3
0
func init() {
	log.Info("Initing cassandra")
	store.Register("cassandra", new(Cassandra))
}
Ejemplo n.º 4
0
func init() {
	log.Info("Registering rethinkdb")
	store.Register("rethinkdb", new(RethinkDB))
}
Ejemplo n.º 5
0
func init() {
	log.Info("Initing leveldb")
	l := new(Leveldb)
	l.SetBloomFilter(13)
	store.Register("leveldb", l)
}
Ejemplo n.º 6
0
func init() {
	log.Info("Initing datastore")
	store.Register("datastore", new(Datastore))
}