Search as a service

Search as a service is a branch of software as a service (SaaS), focussed on enterprise search or site-specific web search.

The need for search

Searching is an important part of any business database function, either through internal databases, internal document stores, or through the content of a website. This is needed for both internal company staff and for external customers. Although a simple database query such as "List existing customers with a postal code for Argleton" is a trivial piece of in-house software development, probably through SQL, this is a simplistic example. More complex searches such as "Find all product brochure text that references the Bindeez product" or "Search the customer-uploaded reviews for any synonyms of 'caught fire' and 'pets' or 'children'" are more difficult to implement. Search, especially free text search or text searching through images of scanned documents, is a specialist discipline.

Externally-provided search services

By outsourcing the search function to a specialist search company through software as a service, a more capable search function may be available to even the smallest organisation. Two methods are popular for this:

Web-mediated search

One method searches a company's publicly visible web presence. An existing search engine such as Bing or Google is encouraged to web crawl this site, as they would normally do so anyway.[1] A link to the company's favoured search partner is coded onto their web site as a simple HTML web form or search box. When a query is submitted, this search box searches the main Google (or other) corpus for the text string, but only for results from that particular web site. These results are then displayed on the site's page, as if they were returned by the site itself. This feature is very easily implemented: the search form simply includes a site: qualifier in the query string passed to the search engine.[2]

Search as a service

The second method is more sophisticated, although more complex. It can support enterprise search too, searching through private resources that are not visible to the public web. Only this form is commonly termed 'Search as a service'. A search provider company offers a search service and a contract is agreed with the client to support their searches. The client then uses the provider's API to upload content data or indexing metadata (if already available) for the content to be searched.[3] The provider then constructs a search index for this content. If the content is free text data or similar unstructured data, then it is first tokenised by Lucene, or similar process.[lower-roman 1]

Search as a service may also be particularly useful for mobile applications, where the client device is limited for storage, processing speed and connection bandwidth.[3]

Federated search

Search as a service should not be confused with federated search, such as Z39.50. These are also services where an agent queries one or more external search engines. In these cases, however, the search engine providers are closely coupled to the content databases. The remoting service passes only the query and the results, not the content metadata to populate the search indexes.

Vendors

See also

References

  1. "Free text search" is not achieved by searching through unstructured free text, but rather by first parsing and tokenising it into a more useful set of indexed data, according to the data supplied and the searches likely to be performed across it. The searches themselves are then performed over these pre-built indexes, which is both simpler and also far faster. Building the initial indexes beforehand may have taken considerable time though.[4]
  1. "Google Custom Search Engine (https://cse.google.com/)". Google. External link in |title= (help);
  2. "Search operators". Google.
  3. 1 2 "How Algolia Built Their Realtime Search as a Service Product". leanstack.io. 23 March 2014.
  4. Gospodnetic, Otis; Erik Hatcher; Michael McCandless (28 June 2009). Lucene in Action (2nd ed.). Manning Publications. ISBN 1-9339-8817-7.
This article is issued from Wikipedia - version of the 10/29/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.