aboutsummaryrefslogtreecommitdiff
path: root/databases/mysql-udf-preg
Commit message (Collapse)AuthorAgeFilesLines
* Update PCRE to 8.32Martin Matuska2012-12-101-1/+1
| | | | | | | | Introduces the UTF-32 library pcre32 Bump PORTREVISION in dependent ports Notes: svn path=/head/; revision=308630
* Fix typos in COMMENTCarlo Strub2012-07-241-1/+1
| | | | Notes: svn path=/head/; revision=301490
* - s/plugins/plugin/g so that its where mysqld expects themPhilip M. Gollucci2012-01-171-5/+6
| | | | | | | | | | - Bump PORTREVISION PR: ports/163609 Submitted by: pawel Notes: svn path=/head/; revision=289364
* lib_mysqludf_preg is a library of mysql UDFs (user-defined-functions) thatPhilip M. Gollucci2011-10-284-0/+64
provide access to the PCRE (perl compatible-regular-expressions) library for pattern matching. The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. This syntax can often handle more complex expressions and capturing than standard regular expression implementations. For more information about PCRE, please see: http://www.pcre.org/ lib_mysqludf_preg is a useful performance optimization for those applications that are already performing these regular expression matches in a high level language (ie. PHP) on the client side. It is also helpful when there is a need to capture a parenthesized subexpression from a regular expression, or simply as a slight performance boost over the builtin RLIKE/REGEXP functions. WWW: http://www.mysqludf.org/lib_mysqludf_preg/index.php Notes: svn path=/head/; revision=284494