Re: pro coding style

2012-12-01 Thread Israel Tsadok
On Fri, Nov 30, 2012 at 3:56 PM, Robert Muir rcm...@gmail.com wrote: Right, I'm positive this (pull requests) is github :) Just a note - pull request has been a git concept before github embraced and extended it. However, almost nobody uses the old meaning, and it's really only useful for

Re: Problem: High Term Frequency After Search

2012-01-13 Thread Israel Tsadok
, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org -- Israel Tsadok | Chief Developer | Omgili T +972.3.6720970 | F +972.3.6720972 | C +972.52.4745047 itsa...@gmail.com | www.omgili.com

Re: Threading of JIRA e-mails in gmail?

2011-02-23 Thread Israel Tsadok
I'm not sure if this solution has been suggested, but I just noticed that the gmail threading algorithm ignores the bracketed part of the subject line. (I couldn't find it documented officially, though). That means that if JIRA subject lines can indeed be customized to say e.g. [JIRA - Created:]

Re: what's the differences between Hits and TopDocs

2010-12-21 Thread Israel Tsadok
http://stackoverflow.com/questions/973354 On Wed, Dec 22, 2010 at 4:41 AM, xu cheng xcheng@gmail.com wrote: hi all: I notice that ,once apon a time, long long ago...the IndexSeacher.search returns Hits, and now the returned object is TopDocs? what's the differences? any answer and

[jira] Created: (LUCENE-2128) Further parallelizaton of ParallelMultiSearcher

2009-12-07 Thread Israel Tsadok (JIRA)
: Search Affects Versions: 3.0 Reporter: Israel Tsadok Priority: Minor When calling {{search(Query, Filter, int)}} on a ParallelMultiSearcher, the {{createWeights}} function of MultiSearcher is called, and sequentially calls {{docFreqs()}} on every sub-searcher. This can

[jira] Updated: (LUCENE-2128) Further parallelizaton of ParallelMultiSearcher

2009-12-07 Thread Israel Tsadok (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2128?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Israel Tsadok updated LUCENE-2128: -- Attachment: LUCENE-2128.patch I extracted step 3 of createWeights into its own method

[jira] Commented: (LUCENE-2041) Complete parallelizaton of ParallelMultiSearcher

2009-12-07 Thread Israel Tsadok (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2041?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=12786932#action_12786932 ] Israel Tsadok commented on LUCENE-2041: --- This has turned into a complete refactoring

[jira] Updated: (LUCENE-2128) Further parallelizaton of ParallelMultiSearcher

2009-12-07 Thread Israel Tsadok (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-2128?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Israel Tsadok updated LUCENE-2128: -- Attachment: LUCENE-2128.patch Attaching a patch that actually compiles. Further

[jira] Updated: (LUCENE-1178) Hits does not use MultiSearcher's createWeight

2008-05-28 Thread Israel Tsadok (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Israel Tsadok updated LUCENE-1178: -- Wow, that was a deafening silence Since Hits has been deprecated in LUCENE-1290, I guess

[jira] Updated: (LUCENE-1178) Hits does not use MultiSearcher's createWeight

2008-05-28 Thread Israel Tsadok (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Israel Tsadok updated LUCENE-1178: -- Actually, when using the other search methods, e.g. search(query, filter, n), the proper method

[jira] Created: (LUCENE-1178) Hits does not use MultiSearcher's createWeight

2008-02-14 Thread Israel Tsadok (JIRA)
Affects Versions: 2.3 Reporter: Israel Tsadok Attachments: hits.diff I am developing a distributed index, using MultiSearcher and RemoteSearcher. When investigating some performance issues, I noticed that there is a lot of back-and-forth traffic between the servers during

[jira] Updated: (LUCENE-1178) Hits does not use MultiSearcher's createWeight

2008-02-14 Thread Israel Tsadok (JIRA)
[ https://issues.apache.org/jira/browse/LUCENE-1178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Israel Tsadok updated LUCENE-1178: -- Attachment: hits.diff Adding a patch for the suggested solution (it's just two lines, really