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
110
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
230
Async Processing with Django and Celery
dstegelman
1
340
Intro Talk on South and Django Con
dstegelman
0
68
Deploying Django Applications
dstegelman
4
660
Other Decks in Programming
See All in Programming
nilとは何か 〜interfaceの構造とnil!=nilから理解する〜
kuro_kurorrr
3
1.9k
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
220
encoding/json/v2のUnmarshalはこう変わった:内部実装で見る設計改善
kurakura0916
0
400
Angular-Apps smarter machen mit Gen AI: Lokal und offlinefähig - Hands-on Workshop!
christianliebel
PRO
0
110
new(1.26) ← これすき / kamakura.go #8
utgwkk
0
2.2k
Takumiから考えるSecurity_Maturity_Model.pdf
gessy0129
1
140
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
460
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
3.5k
CDIの誤解しがちな仕様とその対処TIPS
futokiyo
0
200
grapheme_strrev関数が採択されました(あと雑感)
youkidearitai
PRO
1
210
文字コードの話
qnighy
44
17k
Docコメントで始める簡単ガードレール
keisukeikeda
1
110
Featured
See All Featured
Collaborative Software Design: How to facilitate domain modelling decisions
baasie
0
160
GitHub's CSS Performance
jonrohan
1032
470k
So, you think you're a good person
axbom
PRO
2
2k
How to build an LLM SEO readiness audit: a practical framework
nmsamuel
1
670
Testing 201, or: Great Expectations
jmmastey
46
8.1k
WENDY [Excerpt]
tessaabrams
9
36k
Producing Creativity
orderedlist
PRO
348
40k
Designing for Timeless Needs
cassininazir
0
160
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
860
Ethics towards AI in product and experience design
skipperchong
2
220
SEOcharity - Dark patterns in SEO and UX: How to avoid them and build a more ethical web
sarafernandez
0
140
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
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