1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

- Add pecl-mysqlnd_ms 1.1.1

The replication and load balancing plugin is a plugin for the mysqlnd library.
It can be used with PHP MySQL extensions (ext/mysql, ext/mysqli, PDO_MySQL) if
they are compiled to use mysqlnd. The plugin inspects queries to do read-write
splitting. Read-only queries are send to configured MySQL replication slave
servers all other queries are redirected to the MySQL replication master server.
Very little, if any, application changes required, dependent on the usage
scenario required.

WWW: http://pecl.php.net/package/mysqlnd_ms

PR:		ports/161698
Submitted by:	John Chen <johnpupu@gmail.com>
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2011-11-02 03:29:20 +00:00
parent 74250ef3e7
commit b2630df61e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=284903
4 changed files with 36 additions and 0 deletions

View File

@ -513,6 +513,7 @@
SUBDIR += pecl-memcache
SUBDIR += pecl-memcached
SUBDIR += pecl-mongo
SUBDIR += pecl-mysqlnd_ms
SUBDIR += pecl-rrd
SUBDIR += pecl-sqlite
SUBDIR += pecl-tokyo_tyrant

View File

@ -0,0 +1,24 @@
# New ports collection makefile for: pecl-mysqlnd_ms
# Date created: 13 Oct 2011
# Whom: johnpupu <johnpupu@gmail.com>
#
# $FreeBSD$
#
PORTNAME= mysqlnd_ms
PORTVERSION= 1.1.1
CATEGORIES= databases
MASTER_SITES= http://pecl.php.net/get/
PKGNAMEPREFIX= pecl-
EXTRACT_SUFX= .tgz
DIST_SUBDIR= PECL
MAINTAINER= johnpupu@gmail.com
COMMENT= A replication and load balancing plugin for mysqlnd
USE_PHP= json
USE_PHP_BUILD= yes
USE_PHPEXT= yes
USE_PHPIZE= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (PECL/mysqlnd_ms-1.1.1.tgz) = d199eef485b574e6bbf0c0b65a35c511897e51a620f75e7c0974b8758e160dec
SIZE (PECL/mysqlnd_ms-1.1.1.tgz) = 282136

View File

@ -0,0 +1,9 @@
The replication and load balancing plugin is a plugin for the mysqlnd library.
It can be used with PHP MySQL extensions (ext/mysql, ext/mysqli, PDO_MySQL) if
they are compiled to use mysqlnd. The plugin inspects queries to do read-write
splitting. Read-only queries are send to configured MySQL replication slave
servers all other queries are redirected to the MySQL replication master server.
Very little, if any, application changes required, dependent on the usage
scenario required.
WWW: http://pecl.php.net/package/mysqlnd_ms