I am using the LongURL.org API to extend short URLs. The great thing about this service is that it returns a long URL, the name of the actual page, and meta information.
The real problem is that getting data takes an excessive amount of time. I am considering moving the request to JavaScript so that the URL is retrieved using the AJAX update panel, the page loads quickly, and these URLs are updated when the user views the content (some search results).
Does anyone know how else I could collect the information described above in the best time frame? I use C # ASP.NET, but I will consider solutions in other languages. Any advice in this area is greatly appreciated.
source
share