You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, we use a list. And then we iterate over it for everything we need.
We also store everything on disk. With the rise of CSRF tokens / cookies, we may reconsider and store only some things on disk.
Also, these cookies seam to be never deleted, maybe we should remove them once used (for CSRF), and when expired.
Maybe a Map data structure, or multiple maps, are useful & sensible. They may be constructed when data is read at startup, and extended when data is stored onto disk (where the on-disk format is still a list).
The text was updated successfully, but these errors were encountered:
At the moment, we use a list. And then we iterate over it for everything we need.
We also store everything on disk. With the rise of CSRF tokens / cookies, we may reconsider and store only some things on disk.
Also, these cookies seam to be never deleted, maybe we should remove them once used (for CSRF), and when expired.
Maybe a Map data structure, or multiple maps, are useful & sensible. They may be constructed when data is read at startup, and extended when data is stored onto disk (where the on-disk format is still a list).
The text was updated successfully, but these errors were encountered: