No-Sql and Asp.net Mvc
i asked a related question like this but it was deleted so i have filtered it out
I am creating a twitter like app where feeds are generated for each activity and subscribers can see those feeds.
Currently iam using sql and j开发者_开发技巧oining + unioning (union command) too many tables, I have read many places that for feeds like structure NoSQL (redis or some other) is used.
I am looking for a hello-world sort of application for that in ASP.NET.
I am creating a twitter like app where feeds are generated for each activity and subscribers can see those feeds.
It looks like a good use case for redis pub/sub.
I am looking for a hello-world sort of application for that in ASP.NET.
ServiceStack, which is a maintainer of C# redis client, have some examples.
Check RavenDb http://ravendb.net/ there is a Demo of the MVC Music Store
RavenDb https://github.com/ravendb/ravendb is mantained primarly (I think) by http://ayende.com/blog that has made a lot of cool tools for the .NET community...
And for the twitter REST, I've used http://hammock.codeplex.com/ (it seems that they are not anymore in codeplex....)
http://www.ohloh.net/p/hammock
There are no differences using SQL databases and NoSql databases (like RavenDB) with ASP.NET MVC. Just choose one of them, according to your requirements, and use its API.
精彩评论