I am migrating a large-scale web service to be compatible with international characters. This is the Tomcat / Spring MVC / SQL Server stack. The migration itself was relatively straightforward, we made a few tweaks to Tomcat to force UTF-8 in the response, changed the Java code to use encoding, and moved some VARCHAR columns to NVARCHAR, followed by a healthy dose of unit / function tests.
Another person on my team wants to check the load to make sure that none of these changes affect system performance. The individual components of this transition, described above, do not really hint at any changes in performance, and, frankly, I do not think that this is absolutely necessary based on my limited knowledge. I plan to do this anyway, but this is my question: are there any results that can be seen in such a migration? Is there anything specific for encoding another character that can change system performance?
The only thing I could think of was comparing strings and sorting strings, etc. Any ideas?
source
share