Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードは失敗します(ValueError:pycassaShellの下で、解凍するには値が多すぎます)スーパーカラム をきれいに印刷する方法はありますか?
cf = pycassa.ColumnFamily(pool, 'Super1') res = cf.get_range() for key, col in res: print '\n\n', key, ':' for k, c in col: print k, '=>', c
このような
cf = pycassa.ColumnFamily(pool, 'Super1') res = cf.get_range() for key, col in res: print '\n\n', key, ':' for i in col.keys(): print i, '=>', col[i]