1
1
mirror of https://github.com/MarginaliaSearch/MarginaliaSearch.git synced 2025-10-05 21:22:39 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Viktor Lofgren
39ce40bfeb (query) Add debug logging for specific query 2025-05-16 23:23:53 +02:00
Viktor Lofgren
c187b2e1c1 (search) Re-enable clustering 2025-05-16 23:20:16 +02:00
Viktor Lofgren
42eaa4588b (search) Disable clustering for a moment 2025-05-16 23:17:01 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -80,7 +80,12 @@ public class IndexClient {
.limit(pagination.pageSize)
.toList();
return new AggregateQueryResponse(results, pagination.page(), totalNumResults.get());
var result = new AggregateQueryResponse(results, pagination.page(), totalNumResults.get());
if (indexRequest.getHumanQuery().equals("slackware linux")) {
logger.info("Query: {}", indexRequest.getHumanQuery());
logger.info("Results: {}", result.results);
}
return result;
}
private boolean isBlacklisted(RpcDecoratedResultItem item) {

View File

@@ -23,7 +23,7 @@ public class SearchResultClusterer {
}
/** No clustering, just return the results as is */
private static List<ClusteredUrlDetails> noOp(List<UrlDetails> results, int total) {
public static List<ClusteredUrlDetails> noOp(List<UrlDetails> results, int total) {
if (results.isEmpty())
return List.of();