-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Site#list is much slower than Site#lists #2
Comments
I discovered that when using the lists method, the delay kicks in when I first call a method (column name) on an individual item. I ran that call through the profiler:
|
The #list method actually returns the list with list_name in the URL, which can be different from the title. It is kind of annoying that Savon insists on parsing the XML returned by SP with Crack. Crack uses REXML which is very slow. We use Nokogiri because it is faster and is still maintained. |
Is there any chance of Savon switching to something other than Crack? |
The following is very slow(100+ seconds):
The following is very quick (7 seconds):
Tested on savon-xaop (0.7.2.7), ruby 1.9.2p180, Sharepoint 2007
The text was updated successfully, but these errors were encountered: