Does anyone know about any solutions for keeping data bigger, than 1mb in memcached ?

This is no big deal to cut big data to 1mb pieces before setting and merge this pieces after getting from memcached. And this algorithm can work transparently for users.

This can works on the base of this snippet http://www.djangosnippets.org/snippets/488/

link|improve this question

67% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You can ask memcached to increase the ceiling, but it's quite often a sign that you're doing something wrong.

Most of the time, when we dig into the things people are trying to do with larger objects, they are backing themselves into a corner and start asking questions like "OK, now how can I request just part of this object?"

Sometimes, there's a legitimate need for larger objects (so we support that).

link|improve this answer
In my case, it's not necessary get a part of cached data. I try to cache big sitemap xml file (about 1.5 Mb). How it's possible to increase the ceiling? Any config parameters? I think its necessary to rebuild memcached package for this pourpose, isn't it? – ramusus Feb 20 '10 at 11:21
I don't think putting your sitemap.xml into memcached makes a huge amount of sense. Just generate it in batch and distribute it. – Dustin Feb 21 '10 at 2:06
feedback

Have you checked if gzipping your sitemap helps? For me it reduced my sitemaps to 200kb and now they fit perfectly into memcached. And sitemap bots don't have any problems with gzip these days.

link|improve this answer
feedback

You could setup a cron job that gets the sitemap (generated by Django's sitemap framework) and saves this to a file. Then serve that file as static media (via nginx or apache, not via django ofcourse...)

curl -o /path-to-static-media/sitemap.xml http://yoursite.com/view-that-generates-sitemap/sitemap.xml
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.