Open
Description
Currently, the session in StreamableHttpHandler is ConcurrentDictionary. It stores session information in the machine memory, which makes SSE and stateful streamable HTTP unable to support multiple instances.
Can we create an interface for it and default implement is ConcurrentDictionary? So that we can use shared storage to override it and run these protocols in multi-instance mode.