Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
SOLR Search Engine
Search
Derek Stegelman
April 15, 2014
Programming
0
100
SOLR Search Engine
Very short and quick presentation about SOLR and haystack.
Derek Stegelman
April 15, 2014
Tweet
Share
More Decks by Derek Stegelman
See All by Derek Stegelman
Django Rest Framework
dstegelman
0
370
Getting Started with Salt
dstegelman
0
220
Async Processing with Django and Celery
dstegelman
1
340
Intro Talk on South and Django Con
dstegelman
0
63
Deploying Django Applications
dstegelman
4
660
Other Decks in Programming
See All in Programming
Signals & Resource API in Angular: 3 Effective Rules for Your Architecture @BASTA 2025 in Mainz
manfredsteyer
PRO
0
110
(Extension DC 2025) Actor境界を越える技術
teamhimeh
1
250
iOSエンジニア向けの英語学習アプリを作る!
yukawashouhei
0
190
CSC305 Lecture 06
javiergs
PRO
0
210
Devvox Belgium - Agentic AI Patterns
kdubois
1
100
「ちょっと古いから」って避けてた技術書、今だからこそ読もう
mottyzzz
10
6.4k
Catch Up: Go Style Guide Update
andpad
0
210
GraphQL×Railsアプリのデータベース負荷分散 - 月間3,000万人利用サービスを無停止で
koxya
1
1.2k
いま中途半端なSwift 6対応をするより、Default ActorやApproachable Concurrencyを有効にしてからでいいんじゃない?
yimajo
2
390
Django Ninja による API 開発効率化とリプレースの実践
kashewnuts
0
1.2k
Back to the Future: Let me tell you about the ACP protocol
terhechte
0
140
オープンソースソフトウェアへの解像度🔬
utam0k
11
2.3k
Featured
See All Featured
Building Applications with DynamoDB
mza
96
6.7k
Music & Morning Musume
bryan
46
6.8k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Bash Introduction
62gerente
615
210k
Designing Experiences People Love
moore
142
24k
Side Projects
sachag
455
43k
Designing for humans not robots
tammielis
254
26k
Balancing Empowerment & Direction
lara
4
680
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.6k
Git: the NoSQL Database
bkeepers
PRO
431
66k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
37
2.6k
Automating Front-end Workflow
addyosmani
1371
200k
Transcript
SOLR Search Integration with Django using Haystack
What is SOLR • Apache Lucene project • Written in
Java • Supports several big features including faceting • Fairly bulky compared to other search solutions, but is robust and trusted.
Faceted Searches • Can organize and filter search data through
various facets • Facets aren’t supported by smaller, more trivial search engines such as Whoosh • Facets can be extremely useful in search sites on stores
Haystack Integration • Integration is simple • Interact with the
Haystack API to create and write custom search code. • Code Demo
Schema Creation • Unlike other search engines, SOLR requires a
defined schema • Haystack can build this for you • Every time a search field changes you’ll need to rebuild the schema and re-index • Example
Recommendation • SOLR has proven to be reliable but hard
to debug when issues arise • Schema Creation • Pain to deploy changes • Exploring elastic search to replace it