-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement a ReactiveSessionRepository backed by R2DBC #1748
Comments
Thanks for the suggestion @rj93. I will keep this open as a feature request. As a workaround, you can use a custom |
+1 |
I will probably wait on spring-projects/spring-framework#27229 to get merged so we have a better way to batch insert/update/delete session attributes. |
After trying different ways of doing batch inserts/updates I believe this will be kept on hold for now. In Postgres, batch operations (concatenated statements with ;) do not accept parameters, and therefore, for Postgres there is a need to inline parameters (which opens up for injection attack vectors). I'm not sure yet if leveraging on multiple, separate transactional operations would be a nice alternative. |
I'm feeling burned out. After spending 3 months trying to get Redis Session to work (it didn't), the delete functions wouldn't delete anything. I switched to MongoDB, gave up on that since MongoSession is private, and now am trying Jdbc wih a ReactiveSessionRegistry, but looks like I cannot implement that. I seem cursed : (
|
Expected Behavior
Similar as the JDBC one, but for reactive applications.
Current Behavior
There is none.
Context
How has this issue affected you?
What are you trying to accomplish?
What other alternatives have you considered?
Are you aware of any workarounds?
The text was updated successfully, but these errors were encountered: