mongoDB:可以在数组中使用“文本搜索”吗?

时间:2017-11-15 16:08:08

标签: mongodb text-search

我想在mongoDB中的数组中“文本搜索”。我想使用“文本搜索”作为文档字段(这是一个字符串数组)。我希望能够得到:

$indexOfArray

“文本”的位置。

我尝试使用public class Example { public static void main(String[] args) { Example ex = new Example(); ex.callService(Integer::getInteger, "123"); } private Integer callService(Function<String, Integer> sampleMethod, String input) { Integer output = sampleMethod.apply(input); System.out.println("Calling method "+ sampleMethod); return output; } } ,但即使我正在使用聚合框架,它也无处可去。

任何线索??

0 个答案:

没有答案