Class: Cequel::Type::Counter

Inherits:
Base
  • Object
show all
Defined in:
lib/cequel/type.rb

Overview

Counter columns are a special type of column in Cassandra that can be incremented and decremented atomically. Counter columns cannot comingle with regular data columns in the same table. Unlike other columns, counter columns cannot be updated without Cassandra internally reading the existing state of the column

See Also:

Since:

  • 1.0.0

Instance Method Summary collapse

Methods inherited from Base

#cql_aliases, #cql_name, #internal_name, #to_s

Instance Method Details

#cast(value) ⇒ Object

Since:

  • 1.0.0



264
265
266
# File 'lib/cequel/type.rb', line 264

def cast(value)
  Integer(value)
end

#compatible_typesObject

Since:

  • 1.0.0



260
261
262
# File 'lib/cequel/type.rb', line 260

def compatible_types
  []
end

#internal_namesObject

Since:

  • 1.0.0



256
257
258
# File 'lib/cequel/type.rb', line 256

def internal_names
  ['org.apache.cassandra.db.marshal.CounterColumnType']
end