0
Mutator與Shared Mutator有什麼不同?Hypertable的Mutator與Shared Mutator(Java)
在Mutator的規格中,有一個「flush_interval」(自動刷新間隔,以毫秒爲單位; 0表示禁用它)參數。
在規格爲共享的賦值函數,它指出:
WARNING: Shared mutators sacrifice write durability guarantee because they buffer and flush mutations on a periodic time interval and the set_ methods return without knowing if the mutations succeeded or failed.
那麼,什麼是如果兩者都具有刷新間隔區別?
此外,都是線程安全的(在Java中)?
另外,在性能方面效率更高?