Versions Compared

Key

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

...

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