Instead of hitting the DB all the time when checking for existing properties, let's store the property IDs
and some property info in a Redis DB so that we can just check items in memory.
Solution
Need to create a new Docker container that hosts an instance of Redis and exposes the relevant ports. Something like this:
Problem
Instead of hitting the DB all the time when checking for existing properties, let's store the property IDs and some property info in a Redis DB so that we can just check items in memory.
Solution
Need to create a new Docker container that hosts an instance of Redis and exposes the relevant ports. Something like this:
And make the main Sukasa application depend on this Redis container.
This issue will be carried out on the
enhancement-redis
branch.