kumarsivarajan / mollify

Automatically exported from code.google.com/p/mollify
0 stars 0 forks source link

Improve speed of right click and file details popul #525

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I was wondering if there would be a way to improve the response time of the 
right click menu and the left click on a file window. At the moment, it varies 
from about 0.5 seconds to about 2-3 seconds to load either of those windows. 
Especially if I'm currently uploading something, clicking on a file to bring up 
the details window can take up to 8 seconds. Just something that would be nice 
if it were pre-loaded (if that's even possible). 

Thanks so much!! 

Original issue reported on code.google.com by lvign...@gmail.com on 7 Mar 2014 at 10:11

GoogleCodeExporter commented 8 years ago
The delay comes from the fact that client makes a request to server. This is 
needed to resolve permissions, possible actions and other data for the item 
clicked.

It's not reasonable to preload these for every file/folder there are visible, 
it would be too heavy operation just in case if user opens the info/menu.

I know popup menu could be made a bit faster (the popup menu does not require 
all that info it now requests, so lighter version could be made) and results 
could be cached so they are not fetched again.

But still, your request times are quite slow, so not sure if these actions 
would even help (if response time is slow, in many cases it's not the 
processing that takes the time but waiting for the server)

Original comment by samuli.j...@gmail.com on 16 Mar 2014 at 12:30