Tagged Questions
6
votes
6answers
1k views
What is more efficient a switch case or an std::map
I'm thinking about the tokenizer here.
Each token calls a different function inside the parser.
What is more efficient:
A map of std::functions/boost::functions
A switch case
I thank everyone in ...
4
votes
1answer
548 views
Tokenizing Twitter Posts in Lucene
My question in a nutshell: Does anyone know of a TwitterAnalyzer or TwitterTokenizer for Lucene?
More detailed version:
I want to index a number of tweets in Lucene and keep the terms like @user or ...
0
votes
2answers
99 views
Weird Tokenization Error
I'm trying to Tokenize tweets, but am running into a problem with looping through them.
For example, this works fine:
tweet = """This is an example Tweet!"""
# tokenize the sentence
print text
...
0
votes
1answer
415 views
What is the best way to tokenize a text file in Java?
What is the best way to tokenize a text file in Java, if
I want to work with a java.io.Reader, not a String
Delimiters should be returned?
I have evaluated the following classes:
...