Re: structure of solr index

2013-03-18 Thread Jack Krupansky
se. See: http://3.datastax.com/ -- Jack Krupansky -Original Message- From: alx...@aim.com Sent: Monday, March 18, 2013 1:48 PM To: solr-user@lucene.apache.org Subject: Re: structure of solr index ---So,"search" time is in no way impacting by the existence or non-existence

Re: structure of solr index

2013-03-18 Thread alxsss
getting id field from solr extract stored values from hbase or cassandra. Will this setup be faster than the one with stored fields in Solr? Thanks. Alex. -Original Message- From: Jack Krupansky To: solr-user Sent: Sat, Mar 16, 2013 9:53 am Subject: Re: structure of solr index "

Re: structure of solr index

2013-03-16 Thread Jack Krupansky
processing time would of course include both search time and the time to access and format the stored field values. -- Jack Krupansky -Original Message- From: alx...@aim.com Sent: Saturday, March 16, 2013 12:48 PM To: solr-user@lucene.apache.org Subject: Re: structure of solr index H

Re: structure of solr index

2013-03-16 Thread alxsss
Hi, So, will search time be the same for the case when fields are indexed only vs the case when they are indexed and stored? Thanks. Alex. -Original Message- From: Otis Gospodnetic To: solr-user Sent: Fri, Mar 15, 2013 8:09 pm Subject: Re: structure of solr index Hi, I

Re: structure of solr index

2013-03-15 Thread Otis Gospodnetic
Hi, I think you are asking if the original/raw content of those fields will be read. No, it won't, not for the search itself. If you want to retrieve/return those fields then, of course, they will be read for the documents being returned. Otis -- Solr & ElasticSearch Support http://sematext.com

structure of solr index

2013-03-15 Thread alxsss
Hi, I wondered if solr searches on indexed fields only or on entire index? In more detail, let say I have fields id, title and content, all indexed, stored. Will a search send all these fields to memory or only indexed part of these fields? Thanks. Alex.