On Jun 12, 2008, at 0:02, Arun Singhal wrote:
I have a table in mysql database which has approx. 10 million records. In one column I have IP addresses as long number. I have another table which has a unique title for a set of IP ranges. I want to fetch data in to memcache and then want to manipulate in memory and then I will insert the record in another table. Can u help me how can I do it using memcache?
Are you sure doing it in memory would help? If you're just manipulating rows, I don't see why you'd need to load them all at once. I imagine memcached would likely just slow you down and possibly confuse you when the LRU starts throwing away some of your data, or it otherwise expires.
-- Dustin Sallings