Suppose that I have two applications running on the same page. I have the Libraries compiled into the SWF file:
Suppose
MemoryFootPrint(App A) = App A SWF + Libraries
MemoryFootPrint(App B) = App B SWF + Libraries
So:
MemoryFootPrint(total) = MemoryFootPrint(App A) + MemoryFootPrint(App B)
I am wondering if using RSL will lower the memory footprint of my two applicaitons. Will they share the same libraries. Will the memory footprint be:
MemoryFootPrint(total) = App A SWF + App B SWF + Libraries
OR
MemoryFootPrint(total) = App A SWF + App B SWF + Libraries + Libraries
Is RSL intended to just improve the download time (via caching) or does it also lower the memory foot print of an applicaiton?