在没有任何查询过滤器的情况下,如何使用ReactiveMongoTemplate计算mongodb集合



我想在我的javaspring应用程序中确定mongodb集合大小。我知道reactive rective Mongo Template有一个count()方法,它可以做到这一点,但它需要一个查询参数。

所以我的解决方案是:

public Mono<Long> collectionSize(){
Criteria criteria = Criteria.where("_id").exists(true);
return this.reactiveMongoTemplate.count(Query.query(criteria),MY_COLLECTION_NAME);
}

然而,我不喜欢这个解决方案,因为我必须使用队长明显的标准。

这个问题有更好的解决办法吗?

谢谢!

Criteria有一个空构造函数。

public Mono<Long> collectionSize(){
Criteria criteria = new Criteria();
return this.reactiveMongoTemplate.count(Query.query(criteria),MY_COLLECTION_NAME);
}

参考

计数的所有变体都需要一个查询参数,如所示

查询不需要条件,只需提供查询参数即可。参考

public Mono<Long> collectionSize(){
return this.reactiveMongoTemplate.count(new Query(),MY_COLLECTION_NAME);
}

相关内容

  • 没有找到相关文章

最新更新