| 1 |
// $Id$ |
// $Id: README.txt,v 1.3 2009/07/14 23:38:47 jhodgdon Exp $ |
| 2 |
|
|
| 3 |
GENERAL INFORMATION |
GENERAL INFORMATION |
| 4 |
------------------- |
------------------- |
| 16 |
Note that the Porter Stemmer algorithm is specific to American |
Note that the Porter Stemmer algorithm is specific to American |
| 17 |
English, so some British spellings will not be stemmed correctly. |
English, so some British spellings will not be stemmed correctly. |
| 18 |
|
|
| 19 |
|
This module will use the PECL "stem" library's implementation of the Porter |
| 20 |
|
Stemmer algorithm, if it is installed on your server. If the PECL "stem" |
| 21 |
|
library is not available, the module uses its own PHP implementation of the |
| 22 |
|
algorithm. The output is the same in either case. More information about the |
| 23 |
|
PECL "stem" library: http://pecl.php.net/package/stem |
| 24 |
|
|
| 25 |
|
|
| 26 |
INSTALLATION |
INSTALLATION |
| 27 |
------------ |
------------ |
| 42 |
Due to the way output is displayed in SimpleTest, you may run into |
Due to the way output is displayed in SimpleTest, you may run into |
| 43 |
browser timeout or memory issues if you try to run all 16 of the |
browser timeout or memory issues if you try to run all 16 of the |
| 44 |
"Stemming output" tests during the same test run. |
"Stemming output" tests during the same test run. |
| 45 |
|
|
| 46 |
|
Tests are provided both for the internal algorithm and the PECL library. |