You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ethan Buchman e3bffd8fbd readme 7 years ago
autofile fix metalinter errors 7 years ago
cli fix metalinter errors 7 years ago
clist clist: reduce numTimes in test 7 years ago
common Add tests for repeat timer 7 years ago
db db: sort keys for memdb iterator 7 years ago
events change service#Start to return just error (Refs #45) 7 years ago
flowrate linting: add to Makefile & do some fixes 7 years ago
log Merge pull request #77 from tendermint/18-unsupported-value-type 7 years ago
logger Logger interface and tmLogger impl based on go-kit 8 years ago
merkle linter: couple fixes 7 years ago
pubsub use NoErrorf and Errorf functions 7 years ago
test go-common -> tmlibs 8 years ago
version bump up version to 0.5.0 7 years ago
.editorconfig add .editorconfig 7 years ago
.gitignore Merge pull request #28 from tendermint/feature/376-events.v2 7 years ago
CHANGELOG.md update license and changelog 7 years ago
CODEOWNERS add codeowners file [ci skip] 7 years ago
LICENSE update license and changelog 7 years ago
Makefile Makefile and linter 7 years ago
README.md readme 7 years ago
circle.yml Makefile and linter 7 years ago
glide.lock use NoErrorf and Errorf functions 7 years ago
glide.yaml use NoErrorf and Errorf functions 7 years ago
merge.sh go-common -> tmlibs 8 years ago
test.sh Makefile and linter 7 years ago

README.md

TMLIBS

This repo is a home for various small packages.

autofile

Autofile is file access with automatic log rotation. A group of files is maintained and rotation happens when the leading file gets too big. Provides a reader for reading from the file group.

cli

CLI wraps the cobra and viper packages and handles some common elements of building a CLI like flags and env vars for the home directory and the logger.

clist

Clist provides a linekd list that is safe for concurrent access by many readers.

common

Common provides a hodgepodge of useful functions.

db

DB provides a database interface and a number of implementions, including ones using an in-memory map, the filesystem directory structure, an implemention of LevelDB in Go, and the official LevelDB in C.

events

Events is a synchronous PubSub package.

flowrate

Flowrate is a fork of https://github.com/mxk/go-flowrate that added a SetREMA method.

log

Log is a log package structured around key-value pairs that allows logging level to be set differently for different keys.

logger

Logger is DEPRECATED. It's a simple wrapper around log15.

merkle

Merkle provides a simple static merkle tree and corresponding proofs.

process

Process is a simple utility for spawning OS processes.

pubsub

PubSub is an asynchronous PubSub package.