Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created January 17, 2012 11:23
Show Gist options
  • Save kimchy/1626305 to your computer and use it in GitHub Desktop.
Save kimchy/1626305 to your computer and use it in GitHub Desktop.
lucene english stopwords
final List<String> stopWords = Arrays.asList(
"a", "an", "and", "are", "as", "at", "be", "but", "by",
"for", "if", "in", "into", "is", "it",
"no", "not", "of", "on", "or", "such",
"that", "the", "their", "then", "there", "these",
"they", "this", "to", "was", "will", "with"
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment