首页 > 解决方案 > Interception of aggregation functions in Cassandra

问题描述

I want to store encrypted data in database. But I want to be able to correctly execute the SUM(), AVG() and others. Can I somehow intercept them on Cassandra server side and perform the actions I need?

标签: cassandra

解决方案


这些聚合函数是内置在 Cassandra 中的,在您修改源代码并部署修改后的 Cassandra 版本之前,您无法拦截它们。但是您可以提供自己的实现,并指导人们使用它们而不是使用内置的。


推荐阅读