0.18
No commit activity in last 3 years
No release in over 3 years
Fast Porter stemmer based on a C version of algorithm
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme
Fast-stemmer is simply a wrapping around multithreaded
Porter stemming algorithm.

This gem adds a String#stem method, and it conflicts with the stemmer gem.
It's in order of magnitude faster (and uses much less memory) than the latter.

For the original work please see:
http://tartarus.org/~martin/PorterStemmer/

Gemfile:
  gem 'fast-stemmer'

Usage:

  require 'rubygems'
  require 'fast_stemmer'

  Stemmer::stem_word('running') # -> 'run'
  'running'.stem                # -> 'run'


COPYRIGHT
=========

Copyright (c) 2008 Roman Shterenzon. See LICENSE for details.