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
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
280
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
620
iOS 26にアップデートすると実機でのHot Reloadができない?
umigishiaoi
0
140
Agentic Coding: The Future of Software Development with Agents
mitsuhiko
0
120
チームで開発し事業を加速するための"良い"設計の考え方 @ サポーターズCoLab 2025-07-08
agatan
1
450
Git Sync を超える!OSS で実現する CDK Pull 型デプロイ / Deploying CDK with PipeCD in Pull-style
tkikuc
4
240
20250628_非エンジニアがバイブコーディングしてみた
ponponmikankan
0
710
Rails Frontend Evolution: It Was a Setup All Along
skryukov
0
240
レベル1の開発生産性向上に取り組む − 日々の作業の効率化・自動化を通じた改善活動
kesoji
0
270
ペアプロ × 生成AI 現場での実践と課題について / generative-ai-in-pair-programming
codmoninc
2
20k
MDN Web Docs に日本語翻訳でコントリビュートしたくなる
ohmori_yusuke
1
130
Goで作る、開発・CI環境
sin392
0
260
Featured
See All Featured
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
31
1.3k
RailsConf 2023
tenderlove
30
1.1k
Optimising Largest Contentful Paint
csswizardry
37
3.3k
A better future with KSS
kneath
238
17k
Six Lessons from altMBA
skipperchong
28
3.9k
Raft: Consensus for Rubyists
vanstee
140
7k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
How GitHub (no longer) Works
holman
314
140k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.7k
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