@@ -3434,7 +3434,7 @@ public final CommandObject<String> ftCursorDel(String indexName, long cursorId)
3434
3434
.key (indexName ).add (cursorId ), BuilderFactory .STRING );
3435
3435
}
3436
3436
3437
- public final CommandObject <Map .Entry <AggregationResult , Map < String , Object > >> ftProfileAggregate (
3437
+ public final CommandObject <Map .Entry <AggregationResult , ProfilingInfo >> ftProfileAggregate (
3438
3438
String indexName , FTProfileParams profileParams , AggregationBuilder aggr ) {
3439
3439
return new CommandObject <>(checkAndRoundRobinSearchCommand (SearchCommand .PROFILE , indexName )
3440
3440
.add (SearchKeyword .AGGREGATE ).addParams (profileParams ).add (SearchKeyword .QUERY )
@@ -3443,7 +3443,7 @@ public final CommandObject<Map.Entry<AggregationResult, Map<String, Object>>> ft
3443
3443
: AggregationResult .SEARCH_AGGREGATION_RESULT_WITH_CURSOR ));
3444
3444
}
3445
3445
3446
- public final CommandObject <Map .Entry <SearchResult , Map < String , Object > >> ftProfileSearch (
3446
+ public final CommandObject <Map .Entry <SearchResult , ProfilingInfo >> ftProfileSearch (
3447
3447
String indexName , FTProfileParams profileParams , Query query ) {
3448
3448
return new CommandObject <>(checkAndRoundRobinSearchCommand (SearchCommand .PROFILE , indexName )
3449
3449
.add (SearchKeyword .SEARCH ).addParams (profileParams ).add (SearchKeyword .QUERY )
@@ -3452,7 +3452,7 @@ public final CommandObject<Map.Entry<SearchResult, Map<String, Object>>> ftProfi
3452
3452
() -> new SearchResultBuilder (!query .getNoContent (), query .getWithScores (), true ))));
3453
3453
}
3454
3454
3455
- public final CommandObject <Map .Entry <SearchResult , Map < String , Object > >> ftProfileSearch (
3455
+ public final CommandObject <Map .Entry <SearchResult , ProfilingInfo >> ftProfileSearch (
3456
3456
String indexName , FTProfileParams profileParams , String query , FTSearchParams searchParams ) {
3457
3457
return new CommandObject <>(checkAndRoundRobinSearchCommand (SearchCommand .PROFILE , indexName )
3458
3458
.add (SearchKeyword .SEARCH ).addParams (profileParams ).add (SearchKeyword .QUERY ).add (query )
@@ -4461,32 +4461,51 @@ public void setDefaultSearchDialect(int dialect) {
4461
4461
this .searchDialect .set (dialect );
4462
4462
}
4463
4463
4464
- private class SearchProfileResponseBuilder <T > extends Builder <Map .Entry <T , Map < String , Object > >> {
4464
+ private class SearchProfileResponseBuilder <T > extends Builder <Map .Entry <T , ProfilingInfo >> {
4465
4465
4466
- private static final String PROFILE_STR = "profile" ;
4466
+ private static final String PROFILE_STR_REDIS7 = "profile" ;
4467
+ private static final String PROFILE_STR_REDIS8 = "Profile" ;
4468
+ private static final String RESULTS_STR_REDIS7 = "results" ;
4469
+ private static final String RESULTS_STR_REDIS8 = "Results" ;
4467
4470
4468
- private final Builder <T > replyBuilder ;
4471
+ private final Builder <T > resultsBuilder ;
4469
4472
4470
- public SearchProfileResponseBuilder (Builder <T > replyBuilder ) {
4471
- this .replyBuilder = replyBuilder ;
4473
+ public SearchProfileResponseBuilder (Builder <T > resultsBuilder ) {
4474
+ this .resultsBuilder = resultsBuilder ;
4472
4475
}
4473
4476
4474
4477
@ Override
4475
- public Map .Entry <T , Map < String , Object > > build (Object data ) {
4478
+ public Map .Entry <T , ProfilingInfo > build (Object data ) {
4476
4479
List list = (List ) data ;
4477
4480
if (list == null || list .isEmpty ()) return null ;
4478
4481
4479
- if (list .get (0 ) instanceof KeyValue ) {
4482
+ if (list .get (0 ) instanceof KeyValue ) { // RESP3
4483
+ Object resultsData = null , profileData = null ;
4484
+
4480
4485
for (KeyValue keyValue : (List <KeyValue >) data ) {
4481
- if (PROFILE_STR .equals (BuilderFactory .STRING .build (keyValue .getKey ()))) {
4482
- return KeyValue .of (replyBuilder .build (data ),
4483
- BuilderFactory .AGGRESSIVE_ENCODED_OBJECT_MAP .build (keyValue .getValue ()));
4486
+ String keyStr = BuilderFactory .STRING .build (keyValue .getKey ());
4487
+ switch (keyStr ) {
4488
+ case PROFILE_STR_REDIS7 :
4489
+ case PROFILE_STR_REDIS8 :
4490
+ profileData = keyValue .getValue ();
4491
+ break ;
4492
+ case RESULTS_STR_REDIS7 :
4493
+ resultsData = data ;
4494
+ break ;
4495
+ case RESULTS_STR_REDIS8 :
4496
+ resultsData = keyValue .getValue ();
4497
+ break ;
4484
4498
}
4485
4499
}
4500
+
4501
+ assert resultsData != null : "Could not detect Results data." ;
4502
+ assert profileData != null : "Could not detect Profile data." ;
4503
+ return KeyValue .of (resultsBuilder .build (resultsData ),
4504
+ ProfilingInfo .PROFILING_INFO_BUILDER .build (profileData ));
4486
4505
}
4487
4506
4488
- return KeyValue .of (replyBuilder .build (list .get (0 )),
4489
- SearchBuilderFactory . SEARCH_PROFILE_PROFILE .build (list .get (1 )));
4507
+ return KeyValue .of (resultsBuilder .build (list .get (0 )),
4508
+ ProfilingInfo . PROFILING_INFO_BUILDER .build (list .get (1 )));
4490
4509
}
4491
4510
}
4492
4511
0 commit comments