diff options
author | skreuzer <skreuzer@FreeBSD.org> | 2014-05-13 01:55:07 +0800 |
---|---|---|
committer | skreuzer <skreuzer@FreeBSD.org> | 2014-05-13 01:55:07 +0800 |
commit | c3779853493057381c2008e5d5f33c6dd25a959f (patch) | |
tree | 766268da7f789b23db18908530cfc6ec9f65b01f /databases | |
parent | 86902b97672a3d97d15d487f096ef7ff8ed81c31 (diff) | |
download | freebsd-ports-gnome-c3779853493057381c2008e5d5f33c6dd25a959f.tar.gz freebsd-ports-gnome-c3779853493057381c2008e5d5f33c6dd25a959f.tar.zst freebsd-ports-gnome-c3779853493057381c2008e5d5f33c6dd25a959f.zip |
twemproxy, aka nutcracker is a fast and lightweight proxy for memcached and
redis protocol. It was primarily built to reduce the connection count on the
backend caching serve
WWW: https://github.com/twitter/twemproxy
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/twemproxy/Makefile | 26 | ||||
-rw-r--r-- | databases/twemproxy/distinfo | 2 | ||||
-rw-r--r-- | databases/twemproxy/pkg-descr | 5 |
4 files changed, 34 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index a7140d5d5ca8..066c0f3d052c 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -897,6 +897,7 @@ SUBDIR += tokyotyrant SUBDIR += tora SUBDIR += tuning-primer + SUBDIR += twemproxy SUBDIR += unixODBC SUBDIR += useracc SUBDIR += usogres diff --git a/databases/twemproxy/Makefile b/databases/twemproxy/Makefile new file mode 100644 index 000000000000..3d2e30380295 --- /dev/null +++ b/databases/twemproxy/Makefile @@ -0,0 +1,26 @@ +# Created by: Steven Kreuzer <skreuzer@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= twemproxy +PORTVERSION= 0.3.0 +CATEGORIES= databases +MASTER_SITES= GOOGLE_CODE +DISTNAME= nutcracker-${PORTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Fast, light-weight proxy for memcached and redis + +LICENSE= APACHE20 + +PLIST_FILES= sbin/nutcracker \ + man/man8/nutcracker.8.gz \ + etc/nutcracker.yml.sample + +HAS_CONFIGURE= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/nutcracker ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/man/nutcracker.8 ${STAGEDIR}${MANPREFIX}/man/man8/ + ${INSTALL_DATA} ${WRKSRC}/conf/nutcracker.yml ${STAGEDIR}${PREFIX}/etc/nutcracker.yml.sample + +.include <bsd.port.mk> diff --git a/databases/twemproxy/distinfo b/databases/twemproxy/distinfo new file mode 100644 index 000000000000..fc06cb0db6f6 --- /dev/null +++ b/databases/twemproxy/distinfo @@ -0,0 +1,2 @@ +SHA256 (nutcracker-0.3.0.tar.gz) = e9993d6827b2e93ee2b865e827acbf9efadbbfc81ccd9103a85948ee2580942a +SIZE (nutcracker-0.3.0.tar.gz) = 1825106 diff --git a/databases/twemproxy/pkg-descr b/databases/twemproxy/pkg-descr new file mode 100644 index 000000000000..4c309b9a78a9 --- /dev/null +++ b/databases/twemproxy/pkg-descr @@ -0,0 +1,5 @@ +twemproxy, aka nutcracker is a fast and lightweight proxy for memcached and +redis protocol. It was primarily built to reduce the connection count on the +backend caching serve + +WWW: https://github.com/twitter/twemproxy |