diff options
| author | Michael Christen <Orbiter@users.noreply.github.com> | 2023-11-27 12:17:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-27 12:17:05 +0100 |
| commit | 4c603e23f07569610714327e7e4bca1ec9f5bbaa (patch) | |
| tree | da40b894429f3193145c3116c43c855c1c4dec57 | |
| parent | 040cd8be6d75079540b1f2a31ad89d795e87a2d2 (diff) | |
| parent | cba84632ee72866524ecd8cc1a36943d8704a021 (diff) | |
Merge pull request #610 from okybaca/cr-text
UI: added a more descriptive message, CitationRank instead of cr
| -rw-r--r-- | source/net/yacy/search/schema/CollectionConfiguration.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/net/yacy/search/schema/CollectionConfiguration.java b/source/net/yacy/search/schema/CollectionConfiguration.java index 9609ecfe8..60655ba0f 100644 --- a/source/net/yacy/search/schema/CollectionConfiguration.java +++ b/source/net/yacy/search/schema/CollectionConfiguration.java @@ -1607,7 +1607,7 @@ public class CollectionConfiguration extends SchemaConfiguration implements Seri proccount.incrementAndGet();
allcount.incrementAndGet();
if (proccount.get() % 1000 == 0) {
- postprocessingActivity = "writing cr values to webgraph for host " + hostfinal + "postprocessed " + proccount + " from " + count + " documents; " +
+ postprocessingActivity = "writing CitationRank values to webgraph for host " + hostfinal + "postprocessed " + proccount + " from " + count + " documents; " +
(proccount.get() * 1000 / (System.currentTimeMillis() - start)) + " docs/second; " +
((System.currentTimeMillis() - start) * (count - proccount.get()) / proccount.get() / 60000) + " minutes remaining";
ConcurrentLog.info("CollectionConfiguration", postprocessingActivity);
@@ -1649,7 +1649,7 @@ public class CollectionConfiguration extends SchemaConfiguration implements Seri final Map<String, CRV> rankings = new ConcurrentHashMap<>();
try {
final int concurrency = Math.min(collection1hosts.size(), Runtime.getRuntime().availableProcessors());
- postprocessingActivity = "collecting cr for " + collection1hosts.size() + " hosts, concurrency = " + concurrency;
+ postprocessingActivity = "collecting CitationRank for " + collection1hosts.size() + " hosts, concurrency = " + concurrency;
ConcurrentLog.info("CollectionConfiguration", postprocessingActivity);
int countcheck = 0;
for (final String host: collection1hosts.keyList(true)) {
|
