You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2006/07/10 19:50:13 UTC

[Solr Wiki] Update of "TaskList" by YonikSeeley

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The following page has been changed by YonikSeeley:
http://wiki.apache.org/solr/TaskList

------------------------------------------------------------------------------
    * Support for IndexPartitioning within a single solr webapp instance
    * A more powerful query language allowing one to express complicated logic without resorting to a custom Java query handler plugin.
    * Make use of [http://jakarta.apache.org/hivemind/ HiveMind] or Spring for configuration & dependency injection
-   * Alternate output formats (JSON?)
+   * [JSON in progress] Alternate output formats (JSON?)
+   * utilize Lucene's new field selector / lazy field loading mechanism to speed up requests that select only a few stored fields out of many.  Beware interaction with the DocCache... it may need to be modified or bypassed.
    * Implement some ideas for ComplexFacetingBrainstorming
    * Implement some ideas to MakeSolrMoreSelfService
    * support for an an optional "timestamp" style field in schemas which allways want every doc to include the datetime the document was added to the index.  This might be a special case (like the uniqueKey field) or it could involve more general "default" support for fields and fieldtypes (ie: `<field>` and `<fieldtype>` declarations could include a `default="..."` attribute that gets put into any document that doesn't already have a value for that field, with the underlying !FieldType parsing the text each time it's used, so that the !DateField class can convert `default="now"` to the current time.