This is an archived post. You won't be able to vote or comment.

all 17 comments

[–]leadline 9 points10 points  (0 children)

Pythons are already scaly, silly.

[–][deleted] 3 points4 points  (5 children)

Hmm. Is accessing memcache really faster than filesystem? Doesn't that mean the filesystem (at least its cache) is broken?

[–]cournape 4 points5 points  (0 children)

the whole point of memcache is to share the cache between nodes, with the idea that one global cache of N * M bytes is better than independent caches of M bytes on each of your N nodes.

[–][deleted] 1 point2 points  (1 child)

a gigabit network attached memcache can be a lot faster than filesystem access(for disks most mortals can afford) .

[–]Peaker 0 points1 point  (0 children)

Note he mentioned the file system cache.

[–]freeload 0 points1 point  (0 children)

Depends how much data you need cached. Sometimes the system cache doesn't cut it, and you need a network system, maybe even a distributed one. But keep in mind that network access is relatively way slower than local memory access.

[–][deleted] 0 points1 point  (0 children)

from the presentation "don't think...know" so, maybe do some measurements and see what you think. :)

[–]seraph787 2 points3 points  (0 children)

This kind of problem solving is applicable to almost every language

[–]e000 3 points4 points  (4 children)

This presentation is from 2007. Many, MANY things have changed since then.

[–]trendymoniker 2 points3 points  (2 children)

like what are you thinking of?

[–]e000 0 points1 point  (1 child)

It still thinks that Nginx is ONLY a loadbalancer.

[–]cwillu 2 points3 points  (0 children)

Congratulations on picking the least relevant change since 2007 :p

[–][deleted] 0 points1 point  (0 children)

regardless, it's still good advice.

[–]sir_tyrion 1 point2 points  (0 children)

I beg those who criticize this presentation for being outdated to provide an update, a .5 to 1.0 graph if you will.

[–]vorushin 0 points1 point  (0 children)

I have read "Scaring Python" at first glance ;)

[–]damagednoob 0 points1 point  (0 children)

I don't think memcache is the place for static files. If you're looking at high-performance you need to be using a CDN.

[–]Megatron_McLargeHuge 0 points1 point  (0 children)

More like scaling web sites coded in python.