|
|
|
|
|
by newjersey
1211 days ago
|
|
> Specifically, if those connections are interacting with each other in any meaningful way, I think shared data is still too useful to pass up. What does this mean? What are some scenarios where connections interact with each other? I work with dotnet. To me, every request is standalone and doesn’t need to know any other request exists. At the most, I can see doing some kind of caching where if someone does a GET /person/12345 and someone else does the same, I maybe able to do some caching. However, I don’t think this is what you meant by shared data. Did you mean like if someone does a PUT /person/12345/email hikingfan@gmail.com instead of the next get request reaching to the database, you keep it in the application memory and just use it? Or am I completely missing the point and you’re talking about near real-time stuff like calls and screen sharing? |
|