diff options
| author | Michael Peter Christen <mc@yacy.net> | 2013-09-04 23:11:53 +0200 |
|---|---|---|
| committer | Michael Peter Christen <mc@yacy.net> | 2013-09-04 23:11:53 +0200 |
| commit | 85456f46b2d1f1bf2b6518a5fcc13b8f577e5acb (patch) | |
| tree | defcdfbf78d6d055117528496220203cadc99a2b /defaults/solr.collection.schema | |
| parent | a2511b56009cc01ab9150e860e3833a8b0f97453 (diff) | |
added two new fields, exact_signature_copycount_i and
fuzzy_signature_copycount_i, which count the number of copies of
non-unique documents and assigns this to each document. Thus, each
document there is a number assigned which shows how many copies of this
document exists.
These fields are disabled by default.
Diffstat (limited to 'defaults/solr.collection.schema')
| -rw-r--r-- | defaults/solr.collection.schema | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/defaults/solr.collection.schema b/defaults/solr.collection.schema index 4e6aef38d..a8e814f93 100644 --- a/defaults/solr.collection.schema +++ b/defaults/solr.collection.schema @@ -42,6 +42,9 @@ exact_signature_l ## flag shows if exact_signature_l is unique at the time of document creation, used for double-check during search exact_signature_unique_b +## counter for the number of documents which are not unique (== count of not-unique-flagged documents + 1) +#exact_signature_copycount_i + ## 64 bit of the Lookup3Signature from EnhancedTextProfileSignature of text_t fuzzy_signature_l @@ -51,6 +54,9 @@ fuzzy_signature_l ## flag shows if fuzzy_signature_l is unique at the time of document creation, used for double-check during search fuzzy_signature_unique_b +## counter for the number of documents which are not unique (== count of not-unique-flagged documents + 1) +#fuzzy_signature_copycount_i + ## the size of the raw source (mandatory field) size_i |
