Re: Solr Spellcheck on Large index size

2011-02-14 Thread tjpoe
I know this is old, but I caught it while looking for some help on Spellcheck. I see that you are copying a set of fields to the field named 'text' and then coping 'text' to 'spell'. According to the documentation: http://wiki.apache.org/solr/SchemaXml#Copy_Fields no copy feeds into another

Re: Variable datasources

2011-01-14 Thread tjpoe
I was actually able to figure this out using a slightly different method since the databases exist on the same server I simply made a single datasource with no database selected: datasource url=jdbc:mysql://localhost/ name=content / then in the queries, I qualify using the full database

Variable datasources

2011-01-13 Thread tjpoe
I have several similar databases that I'd like to import from 14 to be exact. there is also a 15th database where I can get a listing of the 14 database. I'm trying to do a variable datasource such as: datasource url=jdbc:mysql://localhost/${local.code} name=content / datasource