Hi,
okay, I'll try:
<memory maxmem="350" /> sets the limit for the memory which is used for the decoded images,
when a image is downloaded, for example with image size 1024x1024,
then this image needs 4 MB of memory (4bytes/pixel = 1024x1024x4),
on very big multiresolution panoramas a lot of images were downloaded,
if all images were saved in memory, the system memory limited will be reached soon,
and the system will begin to swap and slow down or crash,
so when this limit is reached then the memory of the latest used images
is freed and returned to the system, when a images is needed again
it will be decoded again,
here is also a documentation of it -
http://krpano.com/docu/multires/
I set the limit to 350 MB, this should be enough for the most cases
"network.downloadqueues"
- the number of simultaneous downloads
- limited by the browser (FF2=2, FF3=6, IE7=2)
- non-blocking
- high values are good for fast internet connections and fast servers
"network.decodequeues"
- the number of simultaneous image decodes
- the decoding of the images is a "blocking" operation, that means it's not possible to move in the pano while decoding (a flash limitation!)
- show be a low value, only if the images are very small (small tilesizes) it can be increased
everything clear?