[ 
https://issues.apache.org/jira/browse/LUCENE-769?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Artem Vasiliev updated LUCENE-769:
----------------------------------

    Description: 
The attachment №5 from 31 Jan is the last and the whole patch for this issue. 
Guys with permissions, please remove all the others.

It's a small addition to Lucene that significantly lowers memory consumption 
and improves performance for sorted searches with frequent index updates and 
relatively big indexes (>1mln docs) scenario. This solution supports only 
single-field sorting currently (which seem to be quite popular use case). 
Multiple fields support can be added without much trouble.

The solution is this: documents from the sorting set (instead of given field's 
values from the whole index - current FieldCache approach) are cached in a 
WeakHashMap so the cached items are candidates for GC.  Their fields values are 
then fetched from the cache and compared while sorting.

  was:
It's a small addition to Lucene that significantly lowers memory consumption 
and improves performance for sorted searches with frequent index updates and 
relatively big indexes (>1mln docs) scenario. This solution supports only 
single-field sorting currently (which seem to be quite popular use case). 
Multiple fields support can be added without much trouble.

The solution is this: documents from the sorting set (instead of given field's 
values from the whole index - current FieldCache approach) are cached in a 
WeakHashMap so the cached items are candidates for GC.  Their fields values are 
then fetched from the cache and compared while sorting.


> [PATCH] Performance improvement for some cases of sorted search
> ---------------------------------------------------------------
>
>                 Key: LUCENE-769
>                 URL: https://issues.apache.org/jira/browse/LUCENE-769
>             Project: Lucene - Java
>          Issue Type: Improvement
>    Affects Versions: 2.0.0
>            Reporter: Artem Vasiliev
>         Attachments: DocCachingSorting.patch, DocCachingSorting.patch, 
> IndexReaderUtils.java, QueryFilter.java, selfContained.patch, 
> selfContained.patch, selfContained.patch, selfContained.patch, 
> StoredFieldSorting.patch
>
>
> The attachment №5 from 31 Jan is the last and the whole patch for this issue. 
> Guys with permissions, please remove all the others.
> It's a small addition to Lucene that significantly lowers memory consumption 
> and improves performance for sorted searches with frequent index updates and 
> relatively big indexes (>1mln docs) scenario. This solution supports only 
> single-field sorting currently (which seem to be quite popular use case). 
> Multiple fields support can be added without much trouble.
> The solution is this: documents from the sorting set (instead of given 
> field's values from the whole index - current FieldCache approach) are cached 
> in a WeakHashMap so the cached items are candidates for GC.  Their fields 
> values are then fetched from the cache and compared while sorting.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to