Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
import ramcloud
c = ramcloud.RAMCloud()
c.connect()
c.createTable("table1")
tableId = c.getTableId("table1")
c.write(0tableId, 'object1', 'Hello from Python!')
value = c.read(0tableId, 'object1')