i have things that requires processing and rarely changes except with certain events to take advantage of memcached. can i store a serial version of an object in a data field quickly?
thanks, though memcache is no good, what sql column type would i use?
Timmy
2010-04-20 22:25:59
pickle.dumps() returns a string. The problem is that this string can be pretty long so you have to make sure your SQL implementation can handle that.
kaloyan
2010-04-20 22:29:27