You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in Propfind method, when we need to pars XML tree propfind method act recursive and in some reason for performance issue I need to Directory pars all the tree, not recursive,
The text was updated successfully, but these errors were encountered:
Milton's API is very resource oriented, it might be tricky to adjust it to allow for non-recursive deep directory listing. Also, I'm not aware of any situation where actual Dav clients do a deep directory listing .. that would be unworkably slow in most situations.
If you need to optimise for this what i suggest is
create a custom filter which will pre-fetch data.
this will need to inspect the request to determine the method and URL, and fetch the data into a request attribute (or other cache holder)
your CollectionResource.child method can then be optimised to use the pre-fetched data if available
in Propfind method, when we need to pars XML tree propfind method act recursive and in some reason for performance issue I need to Directory pars all the tree, not recursive,
The text was updated successfully, but these errors were encountered: