php-judy icon indicating copy to clipboard operation
php-judy copied to clipboard

PHP Extension for libJudy

Results 8 php-judy issues
Sort by recently updated
recently updated
newest added

once you tried judy arrays, you can't live without them! any chance to get the extension updated for php7? :)

Attempting to use rewind() w/ Judy 0.1.6, results in the error: FatalErrorException: Error: Call to undefined method Judy::rewind() Supposedly Judy implements Iterator, which requires rewind(), but it's not listed in...

Documentation at http://us2.php.net/manual/en/class.judy.php says: > The Judy class implements the ArrayAccess interface and the **Iterator** interface but in fact Iterator interface is not supported: > ❯ php --re Judy |...

I have found in README.md the "how", but not the "why". Being a "Sparse array" implementation, I would expect that it would be **much** more memory efficient to do: ```...

Hi, Do you know how to sort a Judy array ? Using uasort and others... When you insert data, the values are sorted by key whatever the order of insertion....

Judy is a good example on how to handle large array as it compressed as possible. When the server stops the process it means we are consuming almost at the...

Here one guy implemented serialization for Judy::INT_TO_INT: http://habrahabr.ru/sandbox/48527/. Is it possible to have the same for other types?