| clear query|facets|time |
Search criteria: .
Results from 1 to 10 from
308 (0.786s).
|
|
|
Loading phrases to help you refine your search...
|
|
RE: have developer question about ClobTransformer and DIH - Lucene - [mail # dev]
|
|
...I think what it comes down to is that a Clob "is-not-a" Blob. So any code dealing with Clobs that also wants to deal with Blobs and do the same thing with them is going to need to firs...
|
|
|
Author: Dyer, James,
2013-05-17, 22:23
|
|
|
RE: have developer question about ClobTransformer and DIH - Lucene - [mail # dev]
|
|
...I think the usual practice is to use BLOB types to store data that is not a character stream. So you case is probably pretty rare. If casting solves the issue, then why not? &nbs...
|
|
|
Author: Dyer, James,
2013-05-17, 19:19
|
|
|
RE: Speed up import of Hierarchical Data - Solr - [mail # user]
|
|
...Using SqlEntityProcessor with cacheImpl="SortedMapBackedCache" is the same as specifying "CachedSqlEntityProcessor". Because the pluggable caches are only partially committed, I never ...
|
|
|
Author: Dyer, James,
2013-05-17, 14:31
|
|
|
RE: Speed up import of Hierarchical Data - Solr - [mail # user]
|
|
...See https://issues.apache.org/jira/browse/SOLR-2943 . You can set up 2 DIH handlers. The first would query the "CAT_TABLE" and save it to a disk-backed cache, using DIHCacheWrite...
|
|
|
Author: Dyer, James,
2013-05-16, 17:08
|
|
|
RE: delta-import and cache (a story in conflict) - Solr - [mail # user]
|
|
...Try removing the 2nd level of nesting. You can either remove it entirely or combine the middle-level and inner queries with a join. If this "solves" the problem, then we have the...
|
|
|
Author: Dyer, James,
2013-05-14, 21:14
|
|
|
RE: Spellchecker: Is it possible to return search results with the first suggestion as query string instead of a list of suggestions? - Solr - [mail # user]
|
|
...To get a re-written query with the top suggestions, specify "spellcheck.collate=true". Begin reading from here (http://wiki.apache.org/solr/SpellCheckComponent#spellcheck.collate) to s...
|
|
|
Author: Dyer, James,
2013-05-14, 20:10
|
|
|
RE: delta-import and cache (a story in conflict) - Solr - [mail # user]
|
|
...The reason it is writing all the imput fields for that document is this particular error message appends "doc" to the end, which is a subclass of SolrInputDocument, which has a "toString" th...
|
|
|
Author: Dyer, James,
2013-05-14, 20:07
|
|
|
RE: Looking for Best Practice of Spellchecker - Solr - [mail # user]
|
|
...The Word Break spellchecker will incorporate the broken & combined words in the collations. Its designed to work seamlessly in conjunction with a "regular" spellchecker (IndexBased- or...
|
|
|
Author: Dyer, James,
2013-05-13, 18:11
|
|
|
RE: Looking for Best Practice of Spellchecker - Solr - [mail # user]
|
|
...Good point, Jason. In fact, even if you use WorkBreakSpellChecker "wall mart" will not correct to "walmart". The reason is the spellchecker cannot both correct a token's spelling...
|
|
|
Author: Dyer, James,
2013-05-10, 15:34
|
|
|
RE: Looking for Best Practice of Spellchecker - Solr - [mail # user]
|
|
...Nicholas, It sounds like you might want to use WordBreakSolrSpellChecker, which gets obscure mention in the wiki. Read through this section: http://wiki.apache.org/solr/SpellChec...
|
|
|
Author: Dyer, James,
2013-05-10, 14:32
|
|
|
|