Quote:
Originally Posted by ALanJay
By the way did you have a sugestion as to where was the best place to do the arraywalk in your sphinx.php code?
Can it be implemented in the lines like?
ie something like
$cl->SetGroups2 ( array_walk($sphinx_groups2, "intvalArray") );
Obvioulsy with the function elsewhere in the code.
function intvalArray(&$item, $key)
{
$item = intval($item);
}
|
Yeah that's alright.
Quote:
Originally Posted by kmike
Well, as the creator of the multi group column support for 0.9.5 I can honestly say that it was a terrible copy/paste hack. 0.9.7 has them implemented properly, and the resulting index takes much less space which is always good from the I/O standpoint.
|
Hm okay. I'll have a look then. Thanks for telling me