-
Currently looking to build a web app with SolidStart, but I cant find anything descriptive about how Vinxi actually handles session state. Just a few abstractions and one sentence about each. Is there any way to actually configure, say, a SQL table or redis cache to hold sessions? Im finding it odd that there seems to be zero options to extend or adjust this while also having no explanation of what the current implementation does. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Okay so it looks like vinxi just repackages h3 sessions. for anyone interested: https://h3.unjs.io/examples/handle-session its extremely limited. im not familiar with the package so i could be missing something but it appears that it just stores session data in memory, and disappears when the app terminates. really wish this was clarified more in the docs. |
Beta Was this translation helpful? Give feedback.
This is incorrect, it stores the session data on a cookie. Which is an issue since that means you're even more limited than before, since you need your data to be serializable and be encoded in less than 4096 chars