Reputation: 1
I'm new to php and I'd like to use Judy Arrays on windows and I'm having troubles with installation.
I followed steps on page http://php.net/manual/en/judy.installation.php and I get to the step where I've got "Judy.lib" file but I don't know what to do next. It says
"copy this into the php-sdk library folder and name it "libJudy.lib" Then copy the include file "judy.h into the php-sdk includes folder."
but I have no idea what "php-sdk library and includes folder" is
Upvotes: 0
Views: 228
Reputation: 137159
Those instructions are for building from source code.
If you don't want to compile from source you can try downloading a precompiled DLL from the PECL page for the PHP Judy extension, drop it in your PHP\ext\
folder, and enable it in the appropriate php.ini
file.
This process is documented in the PHP manual and referenced in the installation instructions for the PHP Judy module that you mentioned in your question.
Unfortunately, it looks like precompiled DLLs for the latest version of PHP Judy are only available for PHP 5.3, 5.4, 5.5, and 5.6.
Upvotes: 0