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
Current implementation of sessions and the session pool doesn't include the control of the session state.
And we often have next problems:
Usage of session after closing
Parallel usage of one session
Deleting session by client error or canceling
We can resolve these problem by adding the control of current session state - idle, active, executing, canceled and etc. And every action on the session can check this state and returns an error if client uses session in wrong way
The text was updated successfully, but these errors were encountered:
Current implementation of sessions and the session pool doesn't include the control of the session state.
And we often have next problems:
We can resolve these problem by adding the control of current session state - idle, active, executing, canceled and etc. And every action on the session can check this state and returns an error if client uses session in wrong way
The text was updated successfully, but these errors were encountered: