-
Notifications
You must be signed in to change notification settings - Fork 61
/
README
45 lines (37 loc) · 1.87 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
phpMorphy -- morphological analyzer library for Russisan, English and German languages
Website (in russian): http://phpmorphy.sourceforge.net/
SF project: http://sourceforge.net/projects/phpmorphy
This library allow retireve follow morph information for any word:
- Base(normal) form
- All forms
- Grammatical(part of speech, grammems) information
------------ SPEED -------------
*-------------------*
| Single word mode: |
*-----------------------------------------------------------*
| mode | base form | all forms | all forms with gram. info |
|-----------------------------------------------------------|
| FILE | 1000 | 800 | 600 |
|-----------------------------------------------------------|
| SHM | 2200 | 1100 | 800 |
|-----------------------------------------------------------|
| MEM | 2500 | 1200 | 900 |
*-----------------------------------------------------------*
*------------*
| Bulk mode: |
*-----------------------------------------------------------*
| mode | base form | all forms | all forms with gram. info |
|-----------------------------------------------------------|
| FILE | 1700 | 800 | 700 |
|-----------------------------------------------------------|
| SHM | 3200 | 800 | 700 |
|-----------------------------------------------------------|
| MEM | 3500 | 800 | 700 |
*-----------------------------------------------------------*
Note:
All values are words per second speed.
Test platform: PHP 5.2.3, AMD Duron 800 with 512Mb memory, WinXP
------------ INSTALLATION -------------
See INSTALL file in current directory
------------ USAGE -------------
See example in ./examples directory