RE: Query and field name with wildcard

2014-04-07 Thread Croci Francesco Luigi (ID SWS)
...@id.ethz.ch] Sent: Montag, 7. April 2014 11:20 To: solr-user@lucene.apache.org Subject: RE: Query and field name with wildcard Hello Alex, I saw your example and took it as template for my needs. I tried with the aliasing, but, maybe because I did it wrong, it does not work... "error":

RE: Query and field name with wildcard

2014-04-07 Thread Croci Francesco Luigi (ID SWS)
solr-user@lucene.apache.org Subject: Re: Query and field name with wildcard Are you using eDisMax. That gives a lot of options, including field aliasing, including a single name to multiple fields: http://wiki.apache.org/solr/ExtendedDisMax#Field_aliasing_.2F_renaming (with example on p77 of my book

Re: Query and field name with wildcard

2014-04-05 Thread Jack Krupansky
2014 8:13 AM To: solr-user@lucene.apache.org Subject: Re: Query and field name with wildcard Hi, bq. possible to search a word over the entire index. You can a get list of all searchable fields (indexed=true) programmatically by https://wiki.apache.org/solr/LukeRequestHandler And then you ca

Re: Query and field name with wildcard

2014-04-04 Thread Ahmet Arslan
Hi, bq. possible to search a word over the entire index. You can a get list of all searchable fields (indexed=true) programmatically by  https://wiki.apache.org/solr/LukeRequestHandler And then you can fed this list to qf parameter of (e)dismax. This could be implemented as a custom query parser

Re: Query and field name with wildcard

2014-04-04 Thread Alexandre Rafalovitch
Are you using eDisMax. That gives a lot of options, including field aliasing, including a single name to multiple fields: http://wiki.apache.org/solr/ExtendedDisMax#Field_aliasing_.2F_renaming (with example on p77 of my book http://www.packtpub.com/apache-solr-for-indexing-data/book :-) Regards,

Query and field name with wildcard

2014-04-04 Thread Croci Francesco Luigi (ID SWS)
In my index I have some fields which have the same prefix(rmDocumentTitle, rmDocumentClass, rmDocumentSubclass, rmDocumentArt). Apparently it is not possible to specify a query like this: q = rm* : some_word Is there a way to do this without having to write a long list of ORs? Another question