P
Paul
Hi all,
I'm looking for a bit of advice. A project i'm currently working on
uses a custom search facility. The client has recently asked for the
functionality of the search engine to be extended, so people can use
speech marks to enclose certain words and various other characters.
I have coded this in c# and it sits in a code behind file. Due to
having to break the query string into tokens (char array) and then
parse through this with logic, i'm worried about performance issues.
Would it be better to write an exe in C++ which encapsultes the search
functionality? It could take a query input and return the resultant
SQL. Being compiled it should be a lot faster.
Would this be the best way forwards? Would there be any issues calling
the .exe from the ASP.NET site? (I have full access to their
production server, so could make what changes are needed.
Thanks,
Paul
I'm looking for a bit of advice. A project i'm currently working on
uses a custom search facility. The client has recently asked for the
functionality of the search engine to be extended, so people can use
speech marks to enclose certain words and various other characters.
I have coded this in c# and it sits in a code behind file. Due to
having to break the query string into tokens (char array) and then
parse through this with logic, i'm worried about performance issues.
Would it be better to write an exe in C++ which encapsultes the search
functionality? It could take a query input and return the resultant
SQL. Being compiled it should be a lot faster.
Would this be the best way forwards? Would there be any issues calling
the .exe from the ASP.NET site? (I have full access to their
production server, so could make what changes are needed.
Thanks,
Paul