SlideShare a Scribd company logo
Tradeoffs of Replacing Core
Components

Andy Dai
andy@dorm7.com
Django Workshop 2014/1/21
SHOULD I SWAP OUT
DJANGO TEMPLATE/ORM?
DON’T DO IT!
WAIT! NOT REALLY!
IT’S WORTH IF…
YOU ARE OKAY WITH SACRIFICING
ABILITY TO USE THIRD-PARTY
DJANGO PACKAGES
YOU HAVE NO PROBLEM
GIVING UP THE POWERFUL
DJANGO ADMIN
YOU HAVE ALREADY ANALYZED YOUR
OWN CODE TO FIND AND FIX THE
ROOT CAUSES OF YOUR PROBLEMS
YOU’VE EXPLORED ALL OTHER
OPTIONS INCLUDING CACHING
AND DENORMALIZATION
YOU’RE VERY SURE THAT YOU’RE
NOT OPTIMIZING PREMATURELY
YOU’RE WILLING TO ACCEPT THE
FACT THAT UPGRADING DJANGO
WILL BE EXTREMELY PAINFUL
THINK AGAIN!
OK. SO YOU WANT TO USE
DJANGO WITHOUT…
“Django Admin”
“Django Template”
“Django ORM”
“Django Third-Party
Packages”
AND YOU ADD SOME
PACKAGES…
“MongoEngine”
“SQLAlchemy”
“WTForms”
“Jinja2”
CONGRATULATION! YOU
GOT FLASK!
BUT
ORM/TEMPLATE SUCKS…
REPLACE ORM WITH
NOSQL
DO NOT DO THIS
GUESS
WEBSITE WILL GROW RAPIDLY
IT’S OK IF…
YOU HAVE TRIED CACHING,
INDEX, QUERY OPTIMIZATION..
YOU KNOW WHAT YOU ARE
DOING
REPLACE DJANGO TEMPLATE
WITH JINJA2/MAKO
DO NOT DO THIS
LOGIC IN YOUR TEMPLATE
IT’S OK IF THERE ARE SOME PAGES
THAT
ASK YOURSELF BEFORE
REPLACING DJANGO TEMPLATE
“Why you want to do this?”
“Where’s the bottleneck?”
“Cache?”
DO IT ONLY WHEN YOU KNOW
WHAT YOU ARE DOING
ALWAYS USE THE RIGHT TOOL
FOR THE RIGHT JOB
“Premature optimization is the
root of all evil”
– Donald Knuth
Django/Jinja2 Integration

•

Jingo - https://github.com/jbalogh/jingo

•

coffin - https://github.com/coffin/coffin/

•

django-jinja - https://github.com/niwibe/django-jinja
Replace Django ORM

•

SQLAlchemy - http://www.sqlalchemy.org/

•

MongoEngine - http://mongoengine.org/
THANKS!

More Related Content

PDF
K to 12 PC Hardware Servicing Learning Module
PPTX
fmp experiments 2
PPTX
Replacing Laptop Harddrive
PPTX
Upgrading the Computer Component
PDF
Creating peer to peer network nadia perandos bisnar
PPTX
27. nature of directing
PPTX
Ang Kolonyalismo at Imperyalismo sa Timog at Kanlurang Asya
PPTX
Kolonyalismo at imperyalismo sa silangan at timog silangang asya
K to 12 PC Hardware Servicing Learning Module
fmp experiments 2
Replacing Laptop Harddrive
Upgrading the Computer Component
Creating peer to peer network nadia perandos bisnar
27. nature of directing
Ang Kolonyalismo at Imperyalismo sa Timog at Kanlurang Asya
Kolonyalismo at imperyalismo sa silangan at timog silangang asya

More from Andy Dai (17)

PDF
Grpc + python.key
PDF
該怎麼樣(認真的)部署你的 Python Web 應用程式?
PDF
Power UP your CLI
PDF
Search search search
PDF
Django channels
PDF
Django Third party packages
PDF
Practical django secuirty
PDF
總之來講講 Search
PDF
Python web meetup 11 18
PDF
Django in heavy load environment
PDF
電腦不只會幫你選土豆,還會幫你選新聞
PDF
用 Python 打造你自己的 summly
PDF
ElastiCache
PDF
Dynamo db
PDF
Django deploy
PDF
Build your own trello witihin 100 LOC (with Meteor)
PDF
Boost your django admin with Grappelli
Grpc + python.key
該怎麼樣(認真的)部署你的 Python Web 應用程式?
Power UP your CLI
Search search search
Django channels
Django Third party packages
Practical django secuirty
總之來講講 Search
Python web meetup 11 18
Django in heavy load environment
電腦不只會幫你選土豆,還會幫你選新聞
用 Python 打造你自己的 summly
ElastiCache
Dynamo db
Django deploy
Build your own trello witihin 100 LOC (with Meteor)
Boost your django admin with Grappelli
Ad

Recently uploaded (20)

PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Tartificialntelligence_presentation.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Approach and Philosophy of On baking technology
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Encapsulation theory and applications.pdf
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
Machine Learning_overview_presentation.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
Tartificialntelligence_presentation.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
Approach and Philosophy of On baking technology
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Encapsulation theory and applications.pdf
SOPHOS-XG Firewall Administrator PPT.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Assigned Numbers - 2025 - Bluetooth® Document
Encapsulation_ Review paper, used for researhc scholars
Dropbox Q2 2025 Financial Results & Investor Presentation
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
Machine Learning_overview_presentation.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Reach Out and Touch Someone: Haptics and Empathic Computing
MYSQL Presentation for SQL database connectivity
Group 1 Presentation -Planning and Decision Making .pptx
Ad

Tradeoffs of replacing core components