utkar...@gmail.com
unread,Mar 25, 2013, 3:18:22 PM3/25/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to pycassa...@googlegroups.com
Hello,
I have a usecase where I need to disable the autopacking of values from string to binary and need to store all the data as is (as string).
I understand this is not recommended, but I need this for testing a feature.
I tried this:
self.destination_cf = ColumnFamily(destination_pool,
args["column_family"])
self.destination_cf.autopack_names = False
self.destination_cf.autopack_values = False
self.destination_cf.autopack_keys = False
self.destination_cf.default_validation_class = pycassa.types.UTF8Type()
But this does not work. Any suggestions?
Thanks,
-Utkarsh