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
62
Deploying Django Applications
dstegelman
4
660
Other Decks in Programming
See All in Programming
なんとなくわかった気になるブロックテーマ入門/contents.nagoya 2025 6.28
chiilog
1
250
dbt民主化とLLMによる開発ブースト ~ AI Readyな分析サイクルを目指して ~
yoshyum
0
180
『自分のデータだけ見せたい!』を叶える──Laravel × Casbin で複雑権限をスッキリ解きほぐす 25 分
akitotsukahara
1
590
AIプログラマーDevinは PHPerの夢を見るか?
shinyasaita
1
180
Deep Dive into ~/.claude/projects
hiragram
10
2.2k
GraphRAGの仕組みまるわかり
tosuri13
8
510
WebViewの現在地 - SwiftUI時代のWebKit - / The Current State Of WebView
marcy731
0
100
データの民主化を支える、透明性のあるデータ利活用への挑戦 2025-06-25 Database Engineering Meetup#7
y_ken
0
340
5つのアンチパターンから学ぶLT設計
narihara
1
140
アンドパッドの Go 勉強会「 gopher 会」とその内容の紹介
andpad
0
280
XP, Testing and ninja testing
m_seki
3
220
すべてのコンテキストを、 ユーザー価値に変える
applism118
2
1k
Featured
See All Featured
Making Projects Easy
brettharned
116
6.3k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
Scaling GitHub
holman
459
140k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
GraphQLの誤解/rethinking-graphql
sonatard
71
11k
Measuring & Analyzing Core Web Vitals
bluesmoon
7
500
Building Applications with DynamoDB
mza
95
6.5k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
46
9.6k
Building Adaptive Systems
keathley
43
2.6k
Designing Experiences People Love
moore
142
24k
Producing Creativity
orderedlist
PRO
346
40k
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