Database Creation Recovery Model
There are 3 recovery models we can choose from when creating a database: Simple, Full and Bulk Logged
There are 3 recovery models we can choose from when creating a database: Simple, Full and Bulk Logged
Caching is not synonymous with performance. Your code should already be efficient. Caching should only be used as a last resort, after you’ve made all possib...
When beginning to diagnose performance problems, we often assume the problem is in our business logic. Don’t forget that the areas of our code that provide i...
Simple UI tricks, such as progress bars, redirecting users’ attention using animation, or placing slower loading sections at the bottom of a page or offscree...
For small sets of data that are infrequently updated, consider making a method for caching them in the memory of your application server rather than constant...