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
360
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
60
Deploying Django Applications
dstegelman
4
660
Other Decks in Programming
See All in Programming
見えないメモリを観測する: PHP 8.4 `pg_result_memory_size()` とSQL結果のメモリ管理
kentaroutakeda
0
860
PHPで学ぶプログラミングの教訓 / Lessons in Programming Learned through PHP
nrslib
4
990
Scalaから始めるOpenFeature入門 / Scalaわいわい勉強会 #4
arthur1
1
380
LLM Supervised Fine-tuningの理論と実践
datanalyticslabo
8
1.7k
range over funcの使い道と非同期N+1リゾルバーの夢 / about a range over func
mackee
0
180
Fibonacci Function Gallery - Part 1
philipschwarz
PRO
0
260
DevFest - Serverless 101 with Google Cloud Functions
tunmise
0
130
PHPカンファレンス 2024|共創を加速するための若手の技術挑戦
weddingpark
0
110
オニオンアーキテクチャを使って、 Unityと.NETでコードを共有する
soi013
0
330
為你自己學 Python
eddie
0
490
週次リリースを実現するための グローバルアプリ開発
tera_ny
1
290
命名をリントする
chiroruxx
1
530
Featured
See All Featured
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
3
210
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
2k
Visualization
eitanlees
146
15k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
38
1.9k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
Fontdeck: Realign not Redesign
paulrobertlloyd
82
5.3k
Rails Girls Zürich Keynote
gr2m
94
13k
Six Lessons from altMBA
skipperchong
27
3.5k
Documentation Writing (for coders)
carmenintech
67
4.5k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
Java REST API Framework Comparison - PWX 2021
mraible
28
8.3k
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