- add libmemcached-0.14
libmemcached is a C and C++ client library to the memcached server (http://danga.com/memcached). It has been designed to be light on memory usage, thread safe, and provide full access to server side methods. A few notes on its design: # Synchronous and Asynchronous support. # TCP and Unix Socket protocols. # A half dozen or so different hash algorithms. # Implementations of the new cas, replace, and append operators. # Man pages written up on entire API. # Implements both modulo and consistent hashing solutions. It also implements several command line tools: memcat - Copy the value of a key to standard output memflush - Flush the contents of your servers. memrm - Remove a key(s) from the serrver. memcp - Copy files to a memached server. memstat - Dump the stats of your servers to standard output memslap - Generate testing loads on a memcached cluster WWW: http://tangent.org/552/libmemcached.html
This commit is contained in:
parent
49cc29edd1
commit
ce6247b33b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=206049
5 changed files with 118 additions and 0 deletions
|
@ -111,6 +111,7 @@
|
|||
SUBDIR += libgnomedb-reference
|
||||
SUBDIR += libiodbc
|
||||
SUBDIR += libmemcache
|
||||
SUBDIR += libmemcached
|
||||
SUBDIR += libodbc++
|
||||
SUBDIR += libpbl
|
||||
SUBDIR += libsdb
|
||||
|
|
76
databases/libmemcached/Makefile
Normal file
76
databases/libmemcached/Makefile
Normal file
|
@ -0,0 +1,76 @@
|
|||
# New ports collection makefile for: libmemcached
|
||||
# Date created: January 22, 2008
|
||||
# Whom: Yen-Ming Lee <leeym@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libmemcached
|
||||
PORTVERSION= 0.14
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://download.tangent.org/
|
||||
|
||||
MAINTAINER= leeym@FreeBSD.org
|
||||
COMMENT= A C and C++ client library to the memcached server
|
||||
|
||||
USE_PERL5_BUILD=yes # pod2man
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GNOME= gnometarget
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e 's|^pkgconfigdir.*|pkgconfigdir = libdata/pkgconfig|' \
|
||||
${WRKSRC}/support/Makefile.in
|
||||
|
||||
MAN1= memcat.1 memcp.1 memerror.1 memflush.1 memrm.1 memslap.1 memstat.1
|
||||
MAN3= libmemcached.3 \
|
||||
libmemcached_examples.3 \
|
||||
memcached_add.3 \
|
||||
memcached_add_by_key.3 \
|
||||
memcached_append.3 \
|
||||
memcached_append_by_key.3 \
|
||||
memcached_behavior_get.3 \
|
||||
memcached_behavior_set.3 \
|
||||
memcached_callback_get.3 \
|
||||
memcached_callback_set.3 \
|
||||
memcached_cas.3 \
|
||||
memcached_cas_by_key.3 \
|
||||
memcached_clone.3 \
|
||||
memcached_create.3 \
|
||||
memcached_decrement.3 \
|
||||
memcached_delete.3 \
|
||||
memcached_delete_by_key.3 \
|
||||
memcached_fetch.3 \
|
||||
memcached_fetch_execute.3 \
|
||||
memcached_fetch_result.3 \
|
||||
memcached_free.3 \
|
||||
memcached_get.3 \
|
||||
memcached_get_by_key.3 \
|
||||
memcached_increment.3 \
|
||||
memcached_lib_version.3 \
|
||||
memcached_mget.3 \
|
||||
memcached_mget_by_key.3 \
|
||||
memcached_prepend.3 \
|
||||
memcached_prepend_by_key.3 \
|
||||
memcached_quit.3 \
|
||||
memcached_replace.3 \
|
||||
memcached_replace_by_key.3 \
|
||||
memcached_server_add.3 \
|
||||
memcached_server_count.3 \
|
||||
memcached_server_list.3 \
|
||||
memcached_server_list_append.3 \
|
||||
memcached_server_list_count.3 \
|
||||
memcached_server_list_free.3 \
|
||||
memcached_server_push.3 \
|
||||
memcached_servers_parse.3 \
|
||||
memcached_set.3 \
|
||||
memcached_set_by_key.3 \
|
||||
memcached_stat.3 \
|
||||
memcached_stat_get_keys.3 \
|
||||
memcached_stat_get_value.3 \
|
||||
memcached_stat_servername.3 \
|
||||
memcached_strerror.3 \
|
||||
memcached_verbosity.3 \
|
||||
memcached_version.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
databases/libmemcached/distinfo
Normal file
3
databases/libmemcached/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (libmemcached-0.14.tar.gz) = 7055ac8b77244758dc94f6faa468bd2f
|
||||
SHA256 (libmemcached-0.14.tar.gz) = f52704266777b7bd36020b69245c08b23fe9df4118ff08821a809d380b91a71c
|
||||
SIZE (libmemcached-0.14.tar.gz) = 396189
|
23
databases/libmemcached/pkg-descr
Normal file
23
databases/libmemcached/pkg-descr
Normal file
|
@ -0,0 +1,23 @@
|
|||
libmemcached is a C and C++ client library to the memcached server
|
||||
(http://danga.com/memcached). It has been designed to be light on memory usage,
|
||||
thread safe, and provide full access to server side methods.
|
||||
|
||||
A few notes on its design:
|
||||
|
||||
# Synchronous and Asynchronous support.
|
||||
# TCP and Unix Socket protocols.
|
||||
# A half dozen or so different hash algorithms.
|
||||
# Implementations of the new cas, replace, and append operators.
|
||||
# Man pages written up on entire API.
|
||||
# Implements both modulo and consistent hashing solutions.
|
||||
|
||||
It also implements several command line tools:
|
||||
|
||||
memcat - Copy the value of a key to standard output
|
||||
memflush - Flush the contents of your servers.
|
||||
memrm - Remove a key(s) from the serrver.
|
||||
memcp - Copy files to a memached server.
|
||||
memstat - Dump the stats of your servers to standard output
|
||||
memslap - Generate testing loads on a memcached cluster
|
||||
|
||||
WWW: http://tangent.org/552/libmemcached.html
|
15
databases/libmemcached/pkg-plist
Normal file
15
databases/libmemcached/pkg-plist
Normal file
|
@ -0,0 +1,15 @@
|
|||
bin/memcat
|
||||
bin/memcp
|
||||
bin/memerror
|
||||
bin/memflush
|
||||
bin/memrm
|
||||
bin/memslap
|
||||
bin/memstat
|
||||
include/libmemcached/memcached.h
|
||||
include/libmemcached/memcached.hh
|
||||
lib/libmemcached.a
|
||||
lib/libmemcached.la
|
||||
lib/libmemcached.so
|
||||
lib/libmemcached.so.2
|
||||
@dirrmtry lib/pkgconfig
|
||||
@dirrmtry include/libmemcached
|
Loading…
Reference in a new issue