Hello, we are calling the geocoder web service on a new VM with very limited hard drive space, if I change the setup call fo the v2 gecoder from say this:
Dim sGeoCodeFile As String = "D:\GeocodeIndex"
If geoEngine Is Nothing Then
geoEngine = New GeoCodeEngine(sGeoCodeFile, False)
End If
to this:
Dim sGeoCodeFile As String = "\\Storage\GeocodeIndex"
If geoEngine Is Nothing Then
geoEngine = New GeoCodeEngine(sGeoCodeFile, False)
End If
Will there be a large performance hit? Assuming the drive hosting the shared folder is speedy of course.
Thanks,
Tom