Re: GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-04-04 Thread Dan Davis
cache coherence can be a problem, but I am thinking more about what happens when the cache, which is supposed to make things faster, is not available due to error. Django ends up waiting for it. Each request waits for the cache, and this is a hard problem because there is no common shared place

Re: GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-04-02 Thread Girish Sontakke
Hello, If I am not wrong, you are talking about the cache incoherence problem. Currently, I don't have any concrete idea to tackle this problem but I will try to figure it out. Thanks for bringing this to concern. Kind Regards, Girish On

Re: GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-04-01 Thread Dan Davis
Since REDIS is already usable as a cache for Django using 3rd party code, I would rather see a circuit breaker pattern applied to the cache, across all backends. I'm not that active in maintaining Django right now, but a cache may not be fully redundant, and it also can fail. If the cache is

Re: GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-04-01 Thread Girish Sontakke
Hello Carlton, As suggested by you I made some revisions to my proposal. Still, it is not a perfect one, I am trying to improve it. Thanks a lot for the help. Kind Regards, Girish On Thursday, April 1, 2021 at 12:15:53 AM UTC+5:30 carlton...@gmail.com wrote: > > > On 31 Mar 2021, at 11:00,

Re: GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-03-31 Thread Carlton Gibson
> On 31 Mar 2021, at 11:00, Girish Sontakke wrote: > > Now I have doubt that whether I should remove Provides Many Data-Structures > point from the "Why Redis" section or keep it there?. I don’t think it’s vital either way… but it seems a distraction. That Redis has HyperLogLog isn’t

Re: GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-03-31 Thread Girish Sontakke
Thank you, Carlton, I search for discussion in the mailing list about Redis cache I found a helpful discussion here. Should I put my proposal there or should I continue here? In the "Why Redis" section of my

Re: GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-03-31 Thread Carlton Gibson
Hi Girish, Welcome. Have a search of the history of the mailing list here. There was one, or a couple of (?) threads on adding a Redis backend recently (last year or two). >From the "Why Redis" section of your proposal, I think the answer is simply that lots of users (most in fact according

GSOC Proposal: Adding Redis Cache Backend To Django Core.

2021-03-29 Thread Girish Sontakke
Hello, I am Girish Sontakke from India. I am willing to start contributing to Django through GSOC 2021. I have gone through the Idea List available on the Django wiki page for GSOC and select the project of adding Redis Cache Backend To