1Lingua::Stem::Gl(3) User Contributed Perl Documentation Lingua::Stem::Gl(3)
2
3
4
6 Lingua::Stem::Gl - Stemming algorithm for Galacian
7
9 use Lingua::Stem::Gl;
10 my $stems = Lingua::Stem::Gl::stem({ -words => $word_list_reference,
11 -locale => 'gl',
12 -exceptions => $exceptions_hash,
13 });
14
16 This routine applies a stemming algorithm to a passed anon array of
17 Galician words, returning the stemmed words as an anon array.
18
19 It is a 'convienence' wrapper for 'Lingua::Stemmer::GL' that provides a
20 standardized interface and caching.
21
23 1.02 2004.04.26 - Documenation fix
24
25 1.01 2003.09.28 - Documentation fix
26
27 1.00 2003.04.05 - Initial release
28
30 stem({ -words => \@words, -locale => 'gl', -exceptions => \%exceptions
31 });
32 Stems a list of passed words using the rules of Galican. Returns an
33 anonymous list reference to the stemmed words.
34
35 Example:
36
37 my $stemmed_words = Lingua::Stem::Gl::stem({ -words => \@words,
38 -locale => 'gl',
39 -exceptions => \%exceptions,
40 });
41
42 stem_caching({ -level => 0|1|2 });
43 Sets the level of stem caching.
44
45 '0' means 'no caching'. This is the default level.
46
47 '1' means 'cache per run'. This caches stemming results during a
48 single
49 call to 'stem'.
50
51 '2' means 'cache indefinitely'. This caches stemming results until
52 either the process exits or the 'clear_stem_cache' method is
53 called.
54
55 clear_stem_cache;
56 Clears the cache of stemmed words
57
59 This code is a wrapper around Lingua::Stemmer::GL written by xern
60 <xern@cpan.org>
61
63 Lingua::Stem Lingua::Stemmer::GL;
64
66 Integration in Lingua::Stem by
67 Benjamin Franz, FreeRun Technologies,
68 snowhare@nihongo.org or http://www.nihongo.org/snowhare/
69
71 Benjamin Franz, FreeRun Technologies
72
73 This code is freely available under the same terms as Perl.
74
77perl v5.28.0 2018-07-14 Lingua::Stem::Gl(3)