Reputation: 439
I have a Solr 4 instance running which has about about two million entries which are notices published by a stock exchange. To give you an idea of the schema, the main components are as follows:
<field name="UID" type="string" indexed="true" stored="true" required="true" multiValued="false" />
<field name="company" type="text_general" indexed="true" stored="true" />
<field name="datetime" type="date" indexed="true" stored="true" />
<field name="title" type="text_general" indexed="true" stored="true" />
<field name="url" type="text_general" indexed="true" stored="true" />
<field name="notice" type="text_general" indexed="true" stored="true" />
<field name="cachefile" type="text_general" indexed="true" stored="true" />
Is there a way to prepare queries that will give me some interesting facts and figures about the index?
For example:
At the moment I'm not sure if this can be done with some clever query syntax, or if I need to employ the use of a module (Statistic/Analytics?)
Upvotes: 0
Views: 56
Reputation: 729
Upvotes: 1