[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-12-04 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12785810#action_12785810 ] Kay Kay commented on SOLR-912: -- So - what is the current status of this. At what time are we

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-12-04 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12785818#action_12785818 ] Noble Paul commented on SOLR-912: - Type safety is generally not required in NamedList. very

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-12-04 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12786184#action_12786184 ] Kay Kay commented on SOLR-912: -- {quote} Type safety is generally not required in NamedList. very

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-12-04 Thread Chris A. Mattmann (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12786224#action_12786224 ] Chris A. Mattmann commented on SOLR-912: bq. The heterogenous NamedList data

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-12-04 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12786348#action_12786348 ] Noble Paul commented on SOLR-912: - bq.The performance numbers in here say a different story

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-01-19 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12665163#action_12665163 ] Kay Kay commented on SOLR-912: -- Logged a separate issue - SOLR-967 for the temporary fix and

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-01-16 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12664760#action_12664760 ] Hoss Man commented on SOLR-912: --- Kay: It occurs to me that one thing we could do is invert the

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2009-01-14 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12663998#action_12663998 ] Hoss Man commented on SOLR-912: --- Ok, Now I think I understand your type safety goal -- the

Re: [jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-19 Thread Mike Klaas
On 19-Dec-08, at 8:27 AM, Kay Kay (JIRA) wrote: Meanwhile - w.r.t resize() - ( trade-off because increasing size a lot would increase memory usage. increase a size by a smaller factor would be resulting in a more frequent increases in size). I believe reading some theory that the ideal

Re: [jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-19 Thread Yonik Seeley
On Fri, Dec 19, 2008 at 7:10 PM, Mike Klaas mike.kl...@gmail.com wrote: On 19-Dec-08, at 8:27 AM, Kay Kay (JIRA) wrote: int newCapacity = (oldCapacity * 3)/2 + 1; +1 seems to be move away from 0, and keep incrementing the count. ( Hmm .. That piece of code - in Java 6 ArrayList

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-19 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12658249#action_12658249 ] Hoss Man commented on SOLR-912: --- If there are performance gains to be had in the common case

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-19 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12658251#action_12658251 ] Kay Kay commented on SOLR-912: -- | We also need to make sure we don't eliminate any public

Re: [jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-19 Thread Kay Kay
On Fri, Dec 19, 2008 at 8:35 PM, Yonik Seeley ysee...@gmail.com wrote: On Fri, Dec 19, 2008 at 7:10 PM, Mike Klaas mike.kl...@gmail.com wrote: On 19-Dec-08, at 8:27 AM, Kay Kay (JIRA) wrote: int newCapacity = (oldCapacity * 3)/2 + 1; +1 seems to be move away from 0, and keep

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-17 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12657627#action_12657627 ] Kay Kay commented on SOLR-912: -- | ModernNamedList is being suggested as an alternate

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-17 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12657630#action_12657630 ] Kay Kay commented on SOLR-912: -- Additional Info: JRE 6, Linux 2.6.27-9 , 3.2GB Memory,

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-17 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12657692#action_12657692 ] Yonik Seeley commented on SOLR-912: --- While we're going down the micro-benchmarking path, I

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-16 Thread Hoss Man (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12657299#action_12657299 ] Hoss Man commented on SOLR-912: --- If i'm understanding the discussion so far... *

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-14 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12656381#action_12656381 ] Noble Paul commented on SOLR-912: - Type safety is not an overriding concern when a NamedList

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-14 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12656390#action_12656390 ] Kay Kay commented on SOLR-912: -- The interface is present only to enable the migration from

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-14 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12656399#action_12656399 ] Noble Paul commented on SOLR-912: - bq.The interface is present only to enable the migration

[jira] Commented: (SOLR-912) org.apache.solr.common.util.NamedList - Typesafe efficient variant - ModernNamedList introduced - implementing the same API as NamedList

2008-12-14 Thread Kay Kay (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-912?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12656408#action_12656408 ] Kay Kay commented on SOLR-912: -- The interface is mostly used as a proof of concept that the new