RC.insert updates or inserts new column/value pairs  RC.mutate batchwise updates or inserts a list of keys, column
  families and columns/values.
RC.insert(conn, c.family, key, column, value = NULL, comparator = NULL, validator = NULL)
RC.mutate(conn, mutation)RC.connectcolumn. If NULL
    only the column is createdRC.get for detailsRC.get for detailslist(row.key1=list(c.family1=list(col1=val1, ...), ...), ...)
    so to add column "foo" with value "bar" to column family "table" and
    row "key" the mutation would be
    list(key=list(table=list(foo="bar"))). The innermost list can
    optionally be a character vector (if unnamed it specifies the column
    names, otherwise names are column names and elements are values).
    Only string keys and column names are supproted.
  conn
RC.connect, RC.use, RC.get