private void persist(Persist action, MetaLookup ormSession, MutationBatch m) {
Info info = columnFamilies.lookupOrCreate2(action.getColFamily().getColumnFamily(), ormSession);
ColumnFamily cf = info.getColumnFamilyObj();
ColumnListMutation colMutation = m.withRow(cf, action.getRowKey());
for(Column col : action.getColumns()) {
Integer theTime = null;
Long time = col.getTimestamp();
if(time != null)
theTime = (int)time.longValue();
byte[] value = new byte[0];
if(col.getValue() != null)
value = col.getValue();
colMutation.putColumn(col.getName(), value, theTime);
}
}