我的 Couchbase 数据库中存储了以下文档:
{
name:'first document',
document_props:['final','received','sent']
}
{
name:'second document',
document_props:['final','sent']
}
现在我想列出所有documents_props
包含final
和的文档received
。假设我需要这个用于final
, received
, sent
。假设这些属性不是固定的(是自由文本),我能做些什么来促进这一点?
我目前的做法是在应用程序中获取所有内容并进行评估,但这将是一项非常艰巨的工作,因为数据库增长得非常快。