Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Faceted Search (solr) vs Good old filtering via PHP?

I am planning on setting up a filter system (refine your search) in my ecommerce stores. You can see an example here: http://www.bettymills.com/shop/product/find/Air+and+HVAC+Filters

Platforms such as PrestaShop, OpenCart and Magento have what's called a Layered Navigation.

My question is what is the difference between the Layered Navigation in platforms such as Magento or PrestaShop in comparison to using something like Solr or Lucene for faceted navigation.

Can a similar result be accomplished via just php and mysql?

A detailed explanation is much appreciated.

like image 562
Adil Avatar asked Aug 31 '11 11:08

Adil


People also ask

What is the difference between facet and filter?

Filters eliminate search results using initial criteria and never change between searches. Facets are used to refine search results using result attributes, and will change depending on the search query.

What is faceted search example?

Faceted search makes search results more relevant Facets offer a way to describe an aspect of a product or page. For instance, a facet can be an option for a product. If we go back to the iPhone example, a facet would be “black”, “gold” or “pink” as color. By offering faceted search.

What is a facet in faceted search?

Facets, also known as facet filters, allow users to refine their searches by multiple dimensions at the same time. Faceted search is a more granular way to find products and results in a specific, targeted way that is not possible with broad, one-size-fits-all filters.

What is multi faceted search?

Faceted search is a technique that involves augmenting traditional search techniques with a faceted navigation system, allowing users to narrow down search results by applying multiple filters based on faceted classification of the items. It is sometimes referred to as a parametric search technique.


1 Answers

Layered Navigation == Faceted Search.

They are the same thing, but Magento and al uses different wording, probably to be catchy. As far as I know, Magento supports both the Solr faceted search or the MySQL one. The main difference is the performance.

Performance is the main trade-off.

To do faceted search in MySQL requires you to join tables, while Solr indexes the document facets automatically for filtering. You can generally achieve fast response times using Solr (<100ms for a multi-facet search query) on average hardware. While MySQL will take longer for the same search, it can be optimized with indexes to achieve similar response times.

The downside to Solr is that it requires you to configure, secure and run yet another service on your server. It can also be pretty CPU and memory intensive depending on your configuration (Tomcat, jetty, etc.).

Faceted search in PHP/MySQL is possible, and not as hard as you'd think.

You need a specific database schema, but it's feasible. Here's a simple example:

product

+----+------------+ | id | name       | +----+------------+ |  1 | blue paint | |  2 | red paint  | +----+------------+ 

classification

+----+----------+ | id | name     | +----+----------+ |  1 | color    | |  2 | material | |  3 | dept     | +----+----------+ 

product_classification

+------------+-------------------+-------+ | product_id | classification_id | value | +------------+-------------------+-------+ |          1 |                 1 | blue  | |          1 |                 2 | latex | |          1 |                 3 | paint | |          1 |                 3 | home  | |          2 |                 1 | red   | |          2 |                 2 | latex | |          2 |                 3 | paint | |          2 |                 3 | home  | +------------+-------------------+-------+ 

So, say someones search for paint, you'd do something like:

SELECT p.* FROM product p WHERE name LIKE '%paint%'; 

This would return both entries from the product table.

Once your search has executed, you can fetch the associated facets (filters) of your result using a query like this one:

SELECT c.id, c.name, pc.value FROM product p    LEFT JOIN product_classification pc ON pc.product_id = p.id    LEFT JOIN classification c ON c.id = pc.classification_id WHERE p.name LIKE '%paint%' GROUP BY c.id, pc.value ORDER BY c.id; 

This'll give you something like:

+------+----------+-------+ | id   | name     | value | +------+----------+-------+ |    1 | color    | blue  | |    1 | color    | red   | |    2 | material | latex | |    3 | dept     | home  | |    3 | dept     | paint | +------+----------+-------+ 

So, in your result set, you know that there are products whose color are blue and red, that the only material it's made from is latex, and that it can be found in departments home and paint.

Once a user select a facet, just modify the original search query:

SELECT p.* FROM product p    LEFT JOIN product_classification pc ON pc.product_id = p.id WHERE     p.name LIKE '%paint%' AND (       (pc.classification_id = 1 AND pc.value = 'blue') OR       (pc.classification_id = 3 AND pc.value = 'home')    ) GROUP BY p.id HAVING COUNT(p.id) = 2; 

So, here the user is searching for keyword paint, and includes two facets: facet blue for color, and home for department. This'll give you:

+----+------------+ | id | name       | +----+------------+ |  1 | blue paint | +----+------------+ 

So, in conclusion. Although it's available out-of-the-box in Solr, it's possible to implement it in SQL fairly easily.

like image 136
netcoder Avatar answered Sep 23 '22 17:09

netcoder