No, he did not frown at all. JabbR , which is the flagship SignalR testing application, is an IRC-like chat system that stores "rooms", messages, usernames / identifications, etc.
How you store them is up to you. JabbR uses the ADO.NET Entity Framework to store data in SQL DB. You could obviously do the same, or use RavenDB or Azure Table Storage or something else.
All you have to do is implement your logic in the hub, and then when the message arrives, you do any access to the data / data store for that message.
I highly recommend taking a look at the JabbR source code, which is available here on GitHub , to better understand how this might work for you.
source share