Select a specific record in Cassandra using cql
问题 This is the schema I use: CREATE TABLE playerInfo ( key text, column1 bigint, column2 bigint, column3 bigint, column4 bigint, column5 text, value bigint, PRIMARY KEY (key, column1, column2, column3, column4, column5) ) WITH COMPACT STORAGE AND bloom_filter_fp_chance=0.010000 AND caching='KEYS_ONLY' AND comment='' AND dclocal_read_repair_chance=0.000000 AND gc_grace_seconds=864000 AND read_repair_chance=0.100000 AND replicate_on_write='true' AND populate_io_cache_on_flush='false' AND