How to run Redis natively on Xen
openfoo.org
How to run Redis natively on Xen
1–10 of 20 posts
Re: How to run Redis natively on Xen
#2Re: How to run Redis natively on Xen
#3Re: How to run Redis natively on Xen
#4Love it. Will almost certainly never use it (we're not bottlenecking on Redis), but I love projects like this.
That being said (which is specifically about Redis on Xen), though, I think being able to run other server software without an underlying OS is pretty damn neat.
[1] Redis already scales nicely and with the upcoming Redis Cluster it's going to be trivial to run a fault-tolerant scaleable environment.
Re: How to run Redis natively on Xen
#5Love it. Will almost certainly never use it (we're not bottlenecking on Redis), but I love projects like this.
I don't think I'd use it even if Redis was a bottleneck [1]. With a performance increase of around 11% for SET/GET commands, I don't think there's that much to gain from running redis without an underlying OS. There's quite a bit to lose, too, because if you think about it, the implications here are that you aren't going to (ever) be able to make your data persist. Redis is a better fit for data that doesn't necessar…
Re: How to run Redis natively on Xen
#6Re: How to run Redis natively on Xen
#7What a waste. Xen is looking more interesting every day, with stuff like this and HaLVM.
Re: How to run Redis natively on Xen
#8This does not mean virtualization is in general not a good fit for Redis and other DBs. Actually it is already and with the introduction of Redis Cluster to take many small VMs with 1 or 2 GB each and running a cluster will be the way to go for most users probably (every instance will serve a subset of the queries, and there are cheap VMs with a good amount of memory).
But still, Redis in the most basic of the real-hardware Linux boxes will deliver 100k operations per second per core, while with a small virtualized instance it is an order of magnitude slower. Something to take in mind for deployments.
Re: How to run Redis natively on Xen
#9Love it. Will almost certainly never use it (we're not bottlenecking on Redis), but I love projects like this.
I don't think I'd use it even if Redis was a bottleneck [1]. With a performance increase of around 11% for SET/GET commands, I don't think there's that much to gain from running redis without an underlying OS. There's quite a bit to lose, too, because if you think about it, the implications here are that you aren't going to (ever) be able to make your data persist. Redis is a better fit for data that doesn't necessar…
Re: How to run Redis natively on Xen
#10How does it demonstrate that, if the improvement isn't significant?