ms1450 / CommandConnectorCompatibilityCalculator

Compares a customer list of Camera Models with the Verkada HCL to provide compatible cameras.
2 stars 1 forks source link

[FR] Memory Database #49

Open ian-young opened 2 weeks ago

ian-young commented 2 weeks ago

Store calculation outputs in an in-memory database such as Redis or SQLite to save on compute power when working with multiple files/sites.

ian-young commented 2 weeks ago

Will need two tables:

  1. Tracks the csv file and site name
  2. Tracks the recommendations and compatibility

The two will have a mandatory one-to-one relationship. An in-memory SQLite database may be the easiest approach as SQLite is native with Python. To aide development, SQLalchemy may be used.