What’s In-memory file storage¶ in version 4.2 ? Redis replacement ?
The details are provided here: File storage API | Django documentation | Django
The
InMemoryStorage
class implements a memory-based file storage. It has no persistence, but can be useful for speeding up tests by avoiding disk access.
There’s no relationship or comparison between this and Redis.