-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Yesterday I told Wang Tao, an annoying colleague sitting beside me, about how to make the static content enable the CDN in his website which had just been published on Windows Azure. The approach would be Move the static content, the images, CSS files, etc. into the blob storage. Enable the…
>>> More
-
as seen on Pro Webmasters
- Search for 'Pro Webmasters'
I have set up an Edgecast CDN to mirror all my static content. Because I use the root of my domain (donaldjenkins.com) to host my main site—using Google Analytics which sets cookies—I've stored the corresponding static files in a separate cookieless domain (donaldjenkins.info) which is used only…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Does it actually matter which CDN you use to link to your jquery file or any javascript file for that matter. Is one potentially faster than the other? What other factors could play a role in which cdn you decide to use? I know that Microsoft, Yahoo, and Google all have CDN's now.
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
With the updates to Windows Azure CDN announced this week [1] I wanted to help illustrate the capability with a working sample that will serve up dynamic content from an ASP.NET site hosted in a WebRole. First, to get a good overview of the capability you can read the Overview of the Windows Azure…
>>> More
-
as seen on Pro Webmasters
- Search for 'Pro Webmasters'
Trying to wrap my head around how things are cached on a CDN and it is new territory for me. In the document we received about sending in environment requests, it says "Dynamically-generated content will not benefit much from EdgeSuite". I feel like this is a simplified statement and there has to…
>>> More
-
as seen on SQL Authority
- Search for 'SQL Authority'
Recently I wrote about SQL SERVER – INSERT TOP (N) INTO Table – Using Top with INSERT I mentioned about how TOP works with INSERT. I have mentioned that I will write about the performance in next article. Here is the performance comparison of the two options.
It is clear that performance of the Insert…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have the following 3 options, I believe there are more:
For Each entry In Me
Next
For i = 0 To Count
Dim key = Keys(0)
Dim value = Values(0)
Next
For Each Key In Keys
Dim value = Me(Key)
Next
Personally, I think the For Each is best since the GetEnumerator is TKey, TValue…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
We are doing research right now on whether to switch our postgresql db to an embedded Derby db. Both would be using glassfish 3 for our data layer. Anybody have any opinions or knowledge that could help us decide?
Thanks!
edit: we are writing some performance tests ourselves right now. Looking for…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm interested in performance values (big-O analysis) of Lookup and Insert operation for .Net Dictionaries: HashTable, SortedList, StringDictionary, ListDictionary, HybridDictionary, NameValueCollection
Link to a web page with the answer works for me too.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I would like to know the performances of Memcached on remote server(on same LAN) with Disk Caching.Besides Memcached is a scalable cache solution, would there be any advantage of using Memcached with respect to performance when compared to disk caching.
Regards,
Mugil.
>>> More