Actualiser README.md

This commit is contained in:
2025-10-05 21:06:35 +00:00
parent 146948fb14
commit 81c85e3345

View File

@@ -30,4 +30,13 @@ CREATE TABLE interactions (
- "uwuClips" : user upscaled or interpolated clip, `count` indicates the number of clips processed.
`framerate` is the framerate of the composition the user is working on.
`version` is uwu2x version (not After Effects version).
`version` is uwu2x version (not After Effects version).
## Ideas
I believe the "solution" should feature :
- a "script" that takes [1 ; N] rows and adds them to an "analytics-optimized" database.
Ideally, it should be able to process all existing rows and add future ones. Since database INSERT and UPDATE are expensive, the script should do a lot of "in-memory" processing : if there are two `uwuClips` interactions for the same user, do **not** do 2 `UPDATE` in the analytics database : instead, create an object (like Javascript object if your solution is written in Javascript) representing the user's profile, update it with both interactions, then perform 1 `UPDATE` in the database.
- a second "script" to return statistics contained in the "analytics-optimized" database, like any user profile, total user count, active users per day, most used uwu2x version, most used uwu2x version over time, etc.