Hello PECL dev,
I have written a PHP extension and I'm hoping to submit it to PECL. The
submission guidelines <http://pecl.php.net/account-request.php>
suggested I introduce myself on the mailing list, so here I am!
My extension takes the hyperloglog.c
<https://github.com/antirez/redis/blob/unstable/src/hyperloglog.c> file
from Redis and provides a class interface and a procedural interface to
it. I have an old procedural-only version which supports PHP versions
all the way back to 5.2, but the new one is 5.4 only (at least until I
work out how to get it to build with 5.3). I figured I should release
them as versions 1 and 2 respectively, then start working on version 3
with PHP 7 support once I've finished ironing out some of the corner
cases with version 2.
The code is available here: https://github.com/shabbyrobe/phphll
Please let me know if there's anything else I need to do to the
extension to make it ready for prime time.
Kind regards,
Blake Williams