[
https://issues.apache.org/jira/browse/LUCENE-992?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12525271
]
Ning Li commented on LUCENE-992:
The patch looks good! A few comments and/or observations:
- addDocument(Document
: I tried initializing the cache in the constructor, but then the test case
: failed with a null pointer exception on the first synchronized(cache) .
: Very strange, this seems to be a bug in the implementation of java
: serialisation. The cache variable is transient, so it should not be affecte
[
https://issues.apache.org/jira/browse/LUCENE-584?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Paul Elschot updated LUCENE-584:
Attachment: Matcher-20070905-3core.patch
Matcher-20070905-2default.patch
On Tuesday 04 September 2007 21:03, Chris Hostetter wrote:
>
> : if (cache == null) {
> : cache = new WeakHashMap();
> : }
> :
> : I think the initial snippet is not thread safe and might result
> : in two threads initializing this cache to different objects,
> : possibly conflictin
[
https://issues.apache.org/jira/browse/LUCENE-993?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Anthony Yeracaris updated LUCENE-993:
-
Description:
Below, and attached, is a complete java program illustrating this bug.
In t
[
https://issues.apache.org/jira/browse/LUCENE-993?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Anthony Yeracaris updated LUCENE-993:
-
Attachment: MultiFieldQueryParserBug.java
> MultiFieldQueryParser doesn't process search
[
https://issues.apache.org/jira/browse/LUCENE-993?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Anthony Yeracaris updated LUCENE-993:
-
Description:
Below is a complete java program illustrating this bug.
In this program,I h
MultiFieldQueryParser doesn't process search strings containing field
references correctly when BooleanClause.Occur.MUST_NOT is used
Key: LUCENE-99