Changeset 2136 for swish-e/branches/2.6/perl
- Timestamp:
- 04/22/08 09:45:56 (9 months ago)
- Files:
-
- swish-e/branches/2.6/perl/API.pm (modified) (1 diff)
- swish-e/branches/2.6/perl/API.xs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
swish-e/branches/2.6/perl/API.pm
r2025 r2136 550 550 there's no need to specify the index file name. 551 551 552 553 554 =item $stemmed_word = $swish-E<gt>stem_word( $word );555 556 *Deprecated*557 558 Returns the stemmed version of the passed in word.559 560 Deprecated because only stems using the original Porter Stemmer561 and uses a shared memory location in the SW_HANDLE object to store the stemmed562 word. See below for other stemming options.563 564 565 552 =item $fuzzy_word = $swish-E<gt>Fuzzify( $indexname, $word ); 566 553 swish-e/branches/2.6/perl/API.xs
r1774 r2136 425 425 } 426 426 427 428 429 char *430 SwishStemWord(handle, word)431 SW_HANDLE handle432 char *word433 434 435 436 437 427 # ************************************************************** 438 428 #
