Re: [Django Channels] Can I use the same redis server as message backend and cache backend the same time?

2017-09-21 Thread CrazyNPC
Thank you! And your channels! Excellent project! On Saturday, August 5, 2017 at 8:07:41 PM UTC+8, Andrew Godwin wrote: > > 1. You can - Channels namespaces itself away from most keys you might use > (and you add a custom prefix with the "prefix" option). > > 2. Yes, as long as both sites have a d

Re: [Django Channels] Can I use the same redis server as message backend and cache backend the same time?

2017-08-05 Thread Andrew Godwin
1. You can - Channels namespaces itself away from most keys you might use (and you add a custom prefix with the "prefix" option). 2. Yes, as long as both sites have a different prefix setting In both cases I would recommend using separate Redis servers though. They have very low RAM usage and it'

[Django Channels] Can I use the same redis server as message backend and cache backend the same time?

2017-08-05 Thread CrazyNPC
I have 2 questions. 1.Can I use the same redis server as message backend and cache backend the same time? 2.Can I use the same redis server as message backend for different website they both serve by channels ? -- You received this message because you are subscribed to the Google Groups "Djan