Slow start up on Windows Vista
I'm seeing some extremely slow start up times on Windows Vista, ~ >1min. It's faster on OSX. :)
Tilemill log output:
[Server Core:20009]. Client window created. [0119/122434:ERROR:backend_impl.cc(1203)] Critical error found -8 [0119/122435:ERROR:entry_impl.cc(914)] Failed to save user data [0119/122435:ERROR:entry_impl.cc(914)] Failed to save user data [0119/122435:ERROR:cache_util_win.cc(48)] Unable to move the cache: 5 [0119/122435:ERROR:backend_impl.cc(146)] Unable to move cache folder [0119/122435:ERROR:backend_impl.cc(2139)] Corrupt Index file
@yhahn - fyi to debug some of these things... OutputDebugString(<string>); can be useful. It will send stuff to some magical place, then you can watch it using DebugView: http://technet.microsoft.com/en-us/sysinternals/bb896647.
There may be better ways, but since cefclient.exe is a WinMain program simple/normal C++ stdout does not work (std::cout << "string\n")
Downloaded 0.8.0-522 and saw <10s start up. Greatly improved.
Thx for the debug tip -- I was meaning to ask you how to debug : )