https://bugzilla.wikimedia.org/show_bug.cgi?id=15027
--- Comment #7 from Brion Vibber <[email protected]> 2008-12-19 01:23:35 UTC --- Ok, the problem here appears to be that with the default MySQL search backend the search terms get broken up at the periods... Thus "192.168.1.1" would become the boolean mode search: "+192 +168 +1 +1" All the terms would be too short for the default, and fail to return any results. In current 1.14 development trunk, we now pad the short words in the index, so they can be found: '+192U800 +168U800 +1U800 +1U800'' This is a slight improvement, in that the search will work and return matches. But it's still pretty crappy, since the loss of the periods loses you context; you can easily end up with false positives, and the result highlighting doesn't show you what you wanted either. If those periods don't get stripped out of the input, it might work a little better, but the index may need adjustment as well... -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
