Groups: Member
Posts: 2
|
Our application requires very high performance out of the address object, geocoder, stylist, and personator. It is a .NET application so it would be great if these objects were available in pure .NET implementations. There are limitations to the current APIs such as single threading and lack of 64-bit support that really ought to be overcome at this point.
Is there anything in the works?
|
Groups: Administration
Posts: 19
|
Hi. Currently, we support several different platforms including windows, linux, solaris, AIX and HPUX. We have a single code base for this and a pure .NET would require a complete port to .NET which is prohibitively expensive for us at the moment. Our current solution for windows is a COM object which .NET supports and also a windows standard PE dll, which you can access directly if you want to skip the interop layer.
As for threading, the object is thread neutral. As long as you keep each instance to one thread, you can run multiple threads at once. Also, we are close to adding 64-bit versions of our products soon.
Thank you.
|