find()在使用and 等操作过滤集合或表时,可以使用布尔表达式字符串 remove()。对每个文档或行计算一次表达式。
find()
remove()
以下布尔表达式字符串示例 用于从集合 “ apples ”find()中搜索具有 “ red ”颜色属性的所有文档:
apples.find('color = "red"').execute()
同样,要删除所有红苹果:
apples.remove('color = "red"').execute()