In Django when I want to store models like users, places and so on I may use an SQL database, but when I want to store a particular value (only one) I have no idea what to use.
So, I'm doing a website where there is some information that changes monthly. Giving one example:
<meta name="description" content="This team is in {{ ranking }} in the world ranking">
I'll need to change that value, ideally from Django Admin monthly and a Model with one object seems too much (not too much work but simply too much).
I started looking at NoSQL and from this question I'm inclined to use Redis or a similar key-value DB.
Is it the right approach or am I completely off track?