Java Doc for DisjunctionMaxQuery.java in  » Net » lucene-connector » org » apache » lucene » search » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » lucene connector » org.apache.lucene.search 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.lucene.search.Query
      org.apache.lucene.search.DisjunctionMaxQuery

DisjunctionMaxQuery
public class DisjunctionMaxQuery extends Query (Code)
A query that generates the union of documents produced by its subqueries, and that scores each document with the maximum score for that document as produced by any subquery, plus a tie breaking increment for any additional matching subqueries. This is useful when searching for a word in multiple fields with different boost factors (so that the fields cannot be combined equivalently into a single search field). We want the primary score to be the one associated with the highest boost, not the sum of the field scores (as BooleanQuery would give). If the query is "albino elephant" this ensures that "albino" matching one field and "elephant" matching another gets a higher score than "albino" matching both fields. To get this result, use both BooleanQuery and DisjunctionMaxQuery: for each term a DisjunctionMaxQuery searches for it in each field, while the set of these DisjunctionMaxQuery's is combined into a BooleanQuery. The tie breaker capability allows results that include the same term in multiple fields to be judged better than results that include this term in only the best of those multiple fields, without confusing this with the better case of two different terms in the multiple fields.
author:
   Chuck Williams



Constructor Summary
public  DisjunctionMaxQuery(float tieBreakerMultiplier)
     Creates a new empty DisjunctionMaxQuery.
public  DisjunctionMaxQuery(Collection disjuncts, float tieBreakerMultiplier)
    

Method Summary
public  voidadd(Query query)
    
public  voidadd(Collection disjuncts)
    
public  Objectclone()
    
protected  WeightcreateWeight(Searcher searcher)
    
public  booleanequals(Object o)
    
public  voidextractTerms(Set terms)
    
public  inthashCode()
    
public  Iteratoriterator()
    
public  Queryrewrite(IndexReader reader)
    
public  StringtoString(String field)
     Prettyprint us.
Parameters:
  field - the field to which we are applied a string that shows what we do, of the form "(disjunct1 | disjunct2 | ...


Constructor Detail
DisjunctionMaxQuery
public DisjunctionMaxQuery(float tieBreakerMultiplier)(Code)
Creates a new empty DisjunctionMaxQuery. Use add() to add the subqueries.
Parameters:
  tieBreakerMultiplier - this score of each non-maximum disjunct for a document is multiplied by this weightand added into the final score. If non-zero, the value should be small, on the order of 0.1, which says that10 occurrences of word in a lower-scored field that is also in a higher scored field is just as good as a uniqueword in the lower scored field (i.e., one that is not in any higher scored field.



DisjunctionMaxQuery
public DisjunctionMaxQuery(Collection disjuncts, float tieBreakerMultiplier)(Code)
Creates a new DisjunctionMaxQuery
Parameters:
  disjuncts - a Collection of all the disjuncts to add
Parameters:
  tieBreakerMultiplier - the weight to give to each matching non-maximum disjunct




Method Detail
add
public void add(Query query)(Code)
Add a subquery to this disjunction
Parameters:
  query - the disjunct added



add
public void add(Collection disjuncts)(Code)
Add a collection of disjuncts to this disjunction via Iterable



clone
public Object clone()(Code)
Create a shallow copy of us -- used in rewriting if necessary a copy of us (but reuse, don't copy, our subqueries)



createWeight
protected Weight createWeight(Searcher searcher) throws IOException(Code)



equals
public boolean equals(Object o)(Code)
Return true iff we represent the same query as o
Parameters:
  o - another object true iff o is a DisjunctionMaxQuery with the same boost and the same subqueries, in the same order, as us



extractTerms
public void extractTerms(Set terms)(Code)



hashCode
public int hashCode()(Code)
Compute a hash code for hashing us the hash code



iterator
public Iterator iterator()(Code)
An Iterator over the disjuncts



rewrite
public Query rewrite(IndexReader reader) throws IOException(Code)
Optimize our representation and our subqueries representations
Parameters:
  reader - the IndexReader we query an optimized copy of us (which may not be a copy if there is nothing to optimize)



toString
public String toString(String field)(Code)
Prettyprint us.
Parameters:
  field - the field to which we are applied a string that shows what we do, of the form "(disjunct1 | disjunct2 | ... | disjunctn)^boost"



Methods inherited from org.apache.lucene.search.Query
public Object clone()(Code)(Java Doc)
public Query combine(Query[] queries)(Code)(Java Doc)
protected Weight createWeight(Searcher searcher) throws IOException(Code)(Java Doc)
public void extractTerms(Set terms)(Code)(Java Doc)
public float getBoost()(Code)(Java Doc)
public Similarity getSimilarity(Searcher searcher)(Code)(Java Doc)
public static Query mergeBooleanQueries(Query[] queries)(Code)(Java Doc)
public Query rewrite(IndexReader reader) throws IOException(Code)(Java Doc)
public void setBoost(float b)(Code)(Java Doc)
abstract public String toString(String field)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public Weight weight(Searcher searcher) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.