Re: Redis cache support in core

2019-09-04 Thread Jacob Rief
I'm also in favor on having it as part of the core, since memcache is also supported. One of the nice features Redis provides, is the possibility to invalidate one or more cached object by using a wildcard key. It namely is the method delete_pattern() added by django-redis-cache to the given Djang

Re: Redis cache support in core

2019-09-04 Thread Carlton Gibson
A bit delayed but, I'd support a Redis in core. (I still periodically have to go look up the difference between django-redis and django-redis-cache; "Which one did I pick last time?" I think we could help folks out with the first steps here.) Aymeric's summary seems correct: On Thursday, 20 J

A post database write signal

2019-09-04 Thread Anthony Goslar
The post_save signal doesn't return the data written to the database. I have a project where I need to use a newly created instance to create a number of new instances in other models based on the current saved data. I can't however call the data in the current instance using the post_save signa