@@ -1550,72 +1550,72 @@ public RedisFuture<String> info(String section) {
1550
1550
}
1551
1551
1552
1552
@ Override
1553
- public RedisFuture <String > ftCreate (K index , CreateArgs <K , V > options , List <FieldArgs <K >> fieldArgs ) {
1553
+ public RedisFuture <String > ftCreate (String index , CreateArgs <K , V > options , List <FieldArgs <K >> fieldArgs ) {
1554
1554
return dispatch (searchCommandBuilder .ftCreate (index , options , fieldArgs ));
1555
1555
}
1556
1556
1557
1557
@ Override
1558
- public RedisFuture <String > ftCreate (K index , List <FieldArgs <K >> fieldArgs ) {
1558
+ public RedisFuture <String > ftCreate (String index , List <FieldArgs <K >> fieldArgs ) {
1559
1559
return dispatch (searchCommandBuilder .ftCreate (index , null , fieldArgs ));
1560
1560
}
1561
1561
1562
1562
@ Override
1563
- public RedisFuture <String > ftAliasadd (K alias , K index ) {
1563
+ public RedisFuture <String > ftAliasadd (String alias , String index ) {
1564
1564
return dispatch (searchCommandBuilder .ftAliasadd (alias , index ));
1565
1565
}
1566
1566
1567
1567
@ Override
1568
- public RedisFuture <String > ftAliasupdate (K alias , K index ) {
1568
+ public RedisFuture <String > ftAliasupdate (String alias , String index ) {
1569
1569
return dispatch (searchCommandBuilder .ftAliasupdate (alias , index ));
1570
1570
}
1571
1571
1572
1572
@ Override
1573
- public RedisFuture <String > ftAliasdel (K alias ) {
1573
+ public RedisFuture <String > ftAliasdel (String alias ) {
1574
1574
return dispatch (searchCommandBuilder .ftAliasdel (alias ));
1575
1575
}
1576
1576
1577
1577
@ Override
1578
- public RedisFuture <String > ftAlter (K index , boolean skipInitialScan , List <FieldArgs <K >> fieldArgs ) {
1578
+ public RedisFuture <String > ftAlter (String index , boolean skipInitialScan , List <FieldArgs <K >> fieldArgs ) {
1579
1579
return dispatch (searchCommandBuilder .ftAlter (index , skipInitialScan , fieldArgs ));
1580
1580
}
1581
1581
1582
1582
@ Override
1583
- public RedisFuture <List <V >> ftTagvals (K index , K fieldName ) {
1583
+ public RedisFuture <List <V >> ftTagvals (String index , String fieldName ) {
1584
1584
return dispatch (searchCommandBuilder .ftTagvals (index , fieldName ));
1585
1585
}
1586
1586
1587
1587
@ Override
1588
- public RedisFuture <SpellCheckResult <V >> ftSpellcheck (K index , V query ) {
1588
+ public RedisFuture <SpellCheckResult <V >> ftSpellcheck (String index , V query ) {
1589
1589
return dispatch (searchCommandBuilder .ftSpellcheck (index , query ));
1590
1590
}
1591
1591
1592
1592
@ Override
1593
- public RedisFuture <SpellCheckResult <V >> ftSpellcheck (K index , V query , SpellCheckArgs <K , V > args ) {
1593
+ public RedisFuture <SpellCheckResult <V >> ftSpellcheck (String index , V query , SpellCheckArgs <K , V > args ) {
1594
1594
return dispatch (searchCommandBuilder .ftSpellcheck (index , query , args ));
1595
1595
}
1596
1596
1597
1597
@ Override
1598
- public RedisFuture <Long > ftDictadd (K dict , V ... terms ) {
1598
+ public RedisFuture <Long > ftDictadd (String dict , V ... terms ) {
1599
1599
return dispatch (searchCommandBuilder .ftDictadd (dict , terms ));
1600
1600
}
1601
1601
1602
1602
@ Override
1603
- public RedisFuture <Long > ftDictdel (K dict , V ... terms ) {
1603
+ public RedisFuture <Long > ftDictdel (String dict , V ... terms ) {
1604
1604
return dispatch (searchCommandBuilder .ftDictdel (dict , terms ));
1605
1605
}
1606
1606
1607
1607
@ Override
1608
- public RedisFuture <List <V >> ftDictdump (K dict ) {
1608
+ public RedisFuture <List <V >> ftDictdump (String dict ) {
1609
1609
return dispatch (searchCommandBuilder .ftDictdump (dict ));
1610
1610
}
1611
1611
1612
1612
@ Override
1613
- public RedisFuture <String > ftExplain (K index , V query ) {
1613
+ public RedisFuture <String > ftExplain (String index , V query ) {
1614
1614
return dispatch (searchCommandBuilder .ftExplain (index , query ));
1615
1615
}
1616
1616
1617
1617
@ Override
1618
- public RedisFuture <String > ftExplain (K index , V query , ExplainArgs <K , V > args ) {
1618
+ public RedisFuture <String > ftExplain (String index , V query , ExplainArgs <K , V > args ) {
1619
1619
return dispatch (searchCommandBuilder .ftExplain (index , query , args ));
1620
1620
}
1621
1621
@@ -1625,17 +1625,17 @@ public RedisFuture<List<V>> ftList() {
1625
1625
}
1626
1626
1627
1627
@ Override
1628
- public RedisFuture <Map <V , List <V >>> ftSyndump (K index ) {
1628
+ public RedisFuture <Map <V , List <V >>> ftSyndump (String index ) {
1629
1629
return dispatch (searchCommandBuilder .ftSyndump (index ));
1630
1630
}
1631
1631
1632
1632
@ Override
1633
- public RedisFuture <String > ftSynupdate (K index , V synonymGroupId , V ... terms ) {
1633
+ public RedisFuture <String > ftSynupdate (String index , V synonymGroupId , V ... terms ) {
1634
1634
return dispatch (searchCommandBuilder .ftSynupdate (index , synonymGroupId , terms ));
1635
1635
}
1636
1636
1637
1637
@ Override
1638
- public RedisFuture <String > ftSynupdate (K index , V synonymGroupId , SynUpdateArgs <K , V > args , V ... terms ) {
1638
+ public RedisFuture <String > ftSynupdate (String index , V synonymGroupId , SynUpdateArgs <K , V > args , V ... terms ) {
1639
1639
return dispatch (searchCommandBuilder .ftSynupdate (index , synonymGroupId , args , terms ));
1640
1640
}
1641
1641
@@ -1670,52 +1670,52 @@ public RedisFuture<Long> ftSuglen(K key) {
1670
1670
}
1671
1671
1672
1672
@ Override
1673
- public RedisFuture <String > ftAlter (K index , List <FieldArgs <K >> fieldArgs ) {
1673
+ public RedisFuture <String > ftAlter (String index , List <FieldArgs <K >> fieldArgs ) {
1674
1674
return dispatch (searchCommandBuilder .ftAlter (index , false , fieldArgs ));
1675
1675
}
1676
1676
1677
1677
@ Override
1678
- public RedisFuture <String > ftDropindex (K index , boolean deleteDocumentKeys ) {
1678
+ public RedisFuture <String > ftDropindex (String index , boolean deleteDocumentKeys ) {
1679
1679
return dispatch (searchCommandBuilder .ftDropindex (index , deleteDocumentKeys ));
1680
1680
}
1681
1681
1682
1682
@ Override
1683
- public RedisFuture <String > ftDropindex (K index ) {
1683
+ public RedisFuture <String > ftDropindex (String index ) {
1684
1684
return dispatch (searchCommandBuilder .ftDropindex (index , false ));
1685
1685
}
1686
1686
1687
1687
@ Override
1688
- public RedisFuture <SearchReply <K , V >> ftSearch (K index , V query , SearchArgs <K , V > args ) {
1688
+ public RedisFuture <SearchReply <K , V >> ftSearch (String index , V query , SearchArgs <K , V > args ) {
1689
1689
return dispatch (searchCommandBuilder .ftSearch (index , query , args ));
1690
1690
}
1691
1691
1692
1692
@ Override
1693
- public RedisFuture <SearchReply <K , V >> ftSearch (K index , V query ) {
1693
+ public RedisFuture <SearchReply <K , V >> ftSearch (String index , V query ) {
1694
1694
return dispatch (searchCommandBuilder .ftSearch (index , query , SearchArgs .<K , V > builder ().build ()));
1695
1695
}
1696
1696
1697
1697
@ Override
1698
- public RedisFuture <AggregationReply <K , V >> ftAggregate (K index , V query , AggregateArgs <K , V > args ) {
1698
+ public RedisFuture <AggregationReply <K , V >> ftAggregate (String index , V query , AggregateArgs <K , V > args ) {
1699
1699
return dispatch (searchCommandBuilder .ftAggregate (index , query , args ));
1700
1700
}
1701
1701
1702
1702
@ Override
1703
- public RedisFuture <AggregationReply <K , V >> ftAggregate (K index , V query ) {
1703
+ public RedisFuture <AggregationReply <K , V >> ftAggregate (String index , V query ) {
1704
1704
return dispatch (searchCommandBuilder .ftAggregate (index , query , null ));
1705
1705
}
1706
1706
1707
1707
@ Override
1708
- public RedisFuture <AggregationReply <K , V >> ftCursorread (K index , long cursorId , int count ) {
1708
+ public RedisFuture <AggregationReply <K , V >> ftCursorread (String index , long cursorId , int count ) {
1709
1709
return dispatch (searchCommandBuilder .ftCursorread (index , cursorId , count ));
1710
1710
}
1711
1711
1712
1712
@ Override
1713
- public RedisFuture <AggregationReply <K , V >> ftCursorread (K index , long cursorId ) {
1713
+ public RedisFuture <AggregationReply <K , V >> ftCursorread (String index , long cursorId ) {
1714
1714
return dispatch (searchCommandBuilder .ftCursorread (index , cursorId , -1 ));
1715
1715
}
1716
1716
1717
1717
@ Override
1718
- public RedisFuture <String > ftCursordel (K index , long cursorId ) {
1718
+ public RedisFuture <String > ftCursordel (String index , long cursorId ) {
1719
1719
return dispatch (searchCommandBuilder .ftCursordel (index , cursorId ));
1720
1720
}
1721
1721
0 commit comments