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?
The adobe page does not speak about RSIs and the memory footprint other than saying:
From this I am assuming that there is no memory benefit from using RSIs.