is it possible to upload sound files to the Cassandra server through Python, and then retrieve them again? If so, how would I go about doing it? I'm not to familiar with how Cassandra works, so any input would be greatly appreciated.
In addition, I am using pycassa as my python driver.
Thank you.
Yes, you can do this -- what you need is an hex representation of your song bytes. Take care on your blob size, from official documentation
HTH, Carlo