How can using something like MSMQ help with scalability and reliability? In the scenario of one web server to one database server does it help at all?
Whats the best practice for scalable servers which need to maintain a list of active users? Should I open a persistent TCP Connection for each client on which the server sends update messages?
I have been working on my [first] startup for a month now, and while it\'s probably atleast one more month away from an alpha release, I want to know how to deploy it the right way. The site will have
I think one of the advantages of no-sql such as MongoDB is that it can scale horizontally automatically: just add a cheap machine and the data can \"spread over\" to the new machine.
I\'m currently developing the foundation of a an application, and looking for ways to optimize performance. My setup is based on the CakePHP framework, but I believe my question is relevant to any tec
We\'re planning a new API server that will mainly serve JSON responses, with a RESTful interface. We\'re concerned about scale and availability. Are we on the right track using Restlet with 开发者_Sta
Does Telerik has a plan to make ASP.NET MVC\'s combobox have a feature of only fetching the data brought into view(as scrolled by user). The current ASP.NET MVC combobox fetch开发者_JS百科 all rows ev
I have a multisite Drupal installation with about 20 urls pointing to the same code base and a common database. I have around 20,000 visitors visiting all sites daily which I hope would increase.
One database connection is equal to one web request (in case, of course, your client reads the database on each request). By using a connection pool these connections are pre-created, but they are sti
开发者_StackOverflowIs there a C# MongoDb Driver which supports replica sets?There\'s a testing branch of mongodb-csharp with support for Replica Sets.