One common search for two applications having different databases
Hi guys,
I need to implement a common search for two applications which have their own databases.
Is it possible using ezSearch?
I want a full text searcher (one text input field + submit button) that searches into all contents + pdf files of first application and also in all Products contents of second application.
Please suggest me some way or any plugin to achieve this. Its urgent!
This thread might help. It looks like the general approach is to extend Examine (based on Lucene search) which comes with Umbraco to also index PDF. This is typically done using a 3rd party .NET library to parse PDF files. After parsing, the text is then indexed in Examine using code. This leaves some obvious questions open but the thread is massive and hopefully answers some of those for you:
I did it using web apis. Got the list of categaries & products using web-api and then applied search on them. After that, append that search result to content/media(pdf) search result.
One common search for two applications having different databases
Hi guys,
I need to implement a common search for two applications which have their own databases.
Is it possible using ezSearch?
I want a full text searcher (one text input field + submit button) that searches into all contents + pdf files of first application and also in all Products contents of second application.
Please suggest me some way or any plugin to achieve this. Its urgent!
Thanks in advance.
This thread might help. It looks like the general approach is to extend Examine (based on Lucene search) which comes with Umbraco to also index PDF. This is typically done using a 3rd party .NET library to parse PDF files. After parsing, the text is then indexed in Examine using code. This leaves some obvious questions open but the thread is massive and hopefully answers some of those for you:
https://our.umbraco.org/forum/developers/extending-umbraco/8658-Umbraco-Examine-PDF-Indexing
Mayuri,
ezSearch will search umbraco content only. It looks to me as though you want:
Is this correct?
If so then you will need to do a few things.
You will need todo some reading
https://github.com/Shazwazza/Examine https://our.umbraco.org/Documentation/Reference/Searching/Examine/
Regards
Ismail
Done!
I did it using web apis. Got the list of categaries & products using web-api and then applied search on them. After that, append that search result to content/media(pdf) search result.
Thanks.
is working on a reply...