it.unimi.dsi.mg4j.index.cluster

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 » Search Engine » mg4j » it.unimi.dsi.mg4j.index.cluster 
it.unimi.dsi.mg4j.index.cluster
MG4J: Managing Gigabytes for Java

Index partitioning and clustering.

This package contains the classes that provide the infrastructure for index partitioning and clustering. The tools the actually perform partitioning can be found in {@link it.unimi.dsi.mg4j.tool}.

An index cluster is a set of local indices that are viewed as a single index. In a {@linkplain it.unimi.dsi.mg4j.index.cluster.LexicalCluster lexical cluster} each local index has a disjoint set of terms, but the document pointers contained in each local index refer to the same documents. In a {@linkplain it.unimi.dsi.mg4j.index.cluster.DocumentalCluster documental cluster} each index contains postings referring to a disjoint subset of a collection.

Clustering indices requires mapping term number and document pointers back and forth between the global index and local indices. This mapping is provided by {@linkplain it.unimi.dsi.mg4j.index.cluster.DocumentalClusteringStrategy documental clustering strategies} and {@linkplain it.unimi.dsi.mg4j.index.cluster.LexicalClusteringStrategy lexical clustering strategies}.

Clusters are often generated by partitioning an index (albeit, for instance, {@link it.unimi.dsi.mg4j.tool.Scan} produces a cluster as output of the indexing process). In this case, a {@linkplain it.unimi.dsi.mg4j.index.cluster.DocumentalPartitioningStrategy documental partitioning strategy} or a {@linkplain it.unimi.dsi.mg4j.index.cluster.LexicalPartitioningStrategy lexical partitioning strategy} explain how to divide and remap term numbers and document pointers. Of course, the clustering and partitioning strategy must be suitably matched.

Java Source File NameTypeComment
AbstractIndexClusterIndexReader.javaClass An abstract implementation of an IndexReader for an IndexCluster .
ChainedLexicalClusteringStrategy.javaClass A lexical clustering strategy that uses a chain of responsability to choose the local index: out of a given list are inquired until one contains the given term.

If the index cluster has Bloom filters, they will be used to reduce useless accesses to term maps.

The intended usage of this class is memory/disk lexical partitioning.

ClusteringStrategy.javaInterface A common ancestor interface for all clustering strategies.

Clustering strategies are dual to . After partitioning an index, you can see the set of its parts as local indices of a cluster.

ContiguousDocumentalStrategy.javaClass A documental partitioning and clustering strategy that partitions an index into contiguous segments.

To partition an index in contiguous parts, you must provide an array of cutpoints, which define each part.

ContiguousLexicalStrategy.javaClass A lexical strategy that partitions terms into contiguous segments.

To partition terms in contiguous segments, you must provide an array of cutpoints, which define each segment of terms.

DocumentalCluster.javaClass A abstract class representing a cluster of local indices containing separate set of documents from the same collection.

This class stores the strategy and possibly the associated to this documental cluster.

DocumentalClusterIndexReader.javaClass An index reader for a it.unimi.dsi.mg4j.index.cluster.DocumentalCluster .
DocumentalClusteringStrategy.javaInterface A way to associate (quite bidirectionally) local and global document pointers.
DocumentalConcatenatedCluster.javaClass A it.unimi.dsi.mg4j.index.cluster.DocumentalCluster that concatenates the postings of its local indices.
DocumentalConcatenatedClusterDocumentIterator.javaClass A document iterator concatenating iterators from local indices.
DocumentalConcatenatedClusterIndexIterator.javaClass An index iterator concatenating iterators from local indices.
DocumentalMergedCluster.javaClass A it.unimi.dsi.mg4j.index.cluster.DocumentalCluster that merges the postings of its local indices.
DocumentalMergedClusterDocumentIterator.javaClass A document iterator merging iterators from local indices.
DocumentalMergedClusterIndexIterator.javaClass An index iterator merging iterators from local indices.
DocumentalPartitioningStrategy.javaInterface A way to associate a document with a local index out of a given set and a local document number in the local index.
DocumentalStrategies.javaClass Static utility methods for documental strategies.
IdentityDocumentalStrategy.javaClass A documental strategy that maps identically local to global pointers and viceversa.

When clustering a posteriory a set of previously built renumbered indices using a it.unimi.dsi.mg4j.index.cluster.DocumentalMergedCluster , local document pointers are actually global document pointers.

IndexCluster.javaClass An abstract index cluster.
LexicalCluster.javaClass A cluster exhibiting local indices referring to the same collection, but containing different set of terms, as a single index.
LexicalClusterIndexReader.javaClass An index reader for a .
LexicalClusteringStrategy.javaInterface A way to associate a term with a local index out of a given set.
LexicalPartitioningStrategy.javaInterface A way to associate a term number with a local index out of a given set and a local term number in the local index.
LexicalStrategies.javaClass Static utility methods for lexical strategies.
PartitioningStrategy.javaInterface A common ancestor interface for all partitioning strategies.

When partitioning an index, there are a few pieces of data that must be provided independenly of the particular strategy chosen.

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