We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to #28:
Part-of-spech inconsistencies cause duplicate entries to be created in the Lemma cache:
Lemma
[49] pry(main)> WordNet::Lemma.class_variable_get(:@@cache).clear => {} [50] pry(main)> WordNet::Lemma.find('turtle', :n) [51] pry(main)> WordNet::Lemma.find('turtle', 'noun') [52] pry(main)> WordNet::Lemma.class_variable_get(:@@cache).keys => [:noun, "noun"]
One specific example is that Lemma.find_all uses symbols, while Synset.find_all uses strings, causing 4 duplicate cache entries.
Lemma.find_all
Synset.find_all
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related to #28:
Part-of-spech inconsistencies cause duplicate entries to be created in the
Lemma
cache:One specific example is that
Lemma.find_all
uses symbols, whileSynset.find_all
uses strings, causing 4 duplicate cache entries.The text was updated successfully, but these errors were encountered: