DCSIMG
.NET 3.5 - Rotem Bloom's Blog

Rotem Bloom's Blog

Share knowledge on .NET and web development

News

About Me

Glad to help and share knowledge on .NET and also huge fan of Dream Theater.

Contact me via messenger

View Rotem Bloom's profile on LinkedIn

Dream Theater Pics

Blogs I Read

Browse by Tags

All Tags » .NET 3.5 (RSS)
Playing with "Velocity" Distributed Caching
Hi, I decided to take a look and play with MS "Velocity" Distributed Caching. “Velocity” is a distributed in-memory application cache platform for developing scalable, available, and high-performance applications. “Velocity” fuses memory across multiple computers to give a single unified cache view to applications. Applications can store any serializable CLR object without worrying about where the object gets stored. Well I download the latest version CTP2 install it on 2 computers and...
WCF Practices: Writing single function for your entire WCF proxy calls
Let's say you want that all your WCF proxy calls will come from one function. This could be very useful and save a lot of code. For example you can write your proxy exception handling in one place. ...