Persist sessions to DB via SessionStore implementation
Session based authentication
This can be done using actix_session. By default it supports Cookie sessions, which stores session keys in an in-memory cookie store file. The other default implementation would be using the redis…
use randomized UUIDs for posts instead of enumerated integers
Really annoying to do with sqlite unless blog keys saved via binary blobs or strings. Could generate a custom 8 character string datatype per post, uuids are probably way overkill anyways and dont…