Is there a way to configure Django Rest Framework to store token information in Redis rather than the Database ?
相关问题
- Django __str__ returned non-string (type NoneType)
- Django & Amazon SES SMTP. Cannot send email
- Django check user group permissions
- Django restrict pages to certain users
- UnicodeEncodeError with attach_file on EmailMessag
You can create your own custom authentication backend which stores tokens in redis. From the documentation: