Pluralsight - Rails 4.1 Performance Fundamentals

seeders: 3
leechers: 8
Added on July 8, 2014 by RocknBassin Other > Tutorials
Torrent verified.



Pluralsight - Rails 4.1 Performance Fundamentals (Size: 809.35 MB)
 02_01-Introduction.mp41.11 MB
 02_02-Copy-on-write Memory Sharing.mp43.36 MB
 02_03-Generational Garbage Collection.mp41.99 MB
 02_04-Faster Than 2.0.mp42.36 MB
 02_05-Much Faster Than 1.9.3.mp43.32 MB
 02_06-I Teach U App and Apache Bench.mp410.17 MB
 02_07-Comparing 1.9.3 to 2.1.1 Using Apache Bench.mp430.36 MB
 02_08-Memory Consumption in Ruby 2.1.0 and 2.1.1.mp423.24 MB
 02_09-Summary.mp41.36 MB
 03_01-Introduction.mp43.63 MB
 03_02-Profiling, X-Runtime, and the Browser's Network Debug Panel.mp416.76 MB
 03_03-The Rails Log.mp431.78 MB
 03_04-Pagination and Kaminari.mp412.66 MB
 03_05-Missing Indexes and Lol_dba.mp424.04 MB
 03_06-Bullet, N+1 Queries, and Counter Caches.mp441.63 MB
 03_07-Rack-Mini-Profiler and Flamegraphs.mp434.49 MB
 03_08-Select and Pluck.mp47.87 MB
 03_09-The Query Cache.mp43.61 MB
 03_10-New Relic and Rails Panel.mp418.12 MB
 04_01-Introduction and HTTP Headers.mp43.92 MB
 04_02-Last-Modified and If-Modified-Since.mp43.02 MB
 04_03-ETag and If-None-Match.mp42.73 MB
 04_04-Cache-Control and Max-age.mp42.63 MB
 04_05-RackETag and RackConditionalGet.mp44.59 MB
 04_06-stale and fresh_when.mp419.51 MB
 04_07-Declarative ETags and the ETagger Gem.mp411 MB
 04_08-Setting Cache-Control max-age With expires_in.mp41.62 MB
 04_09-Disable Middleware that Modifies the Body.mp47.13 MB
 04_10-Demo.mp451.68 MB
 04_11-Summary.mp43.53 MB
 05_01-Introduction and Cache Stores.mp44.79 MB
 05_02-Setting Up Memcached in Rails and for Development.mp44.34 MB
 05_03-Fragment Caching.mp45.89 MB
 05_04-Fragment Caching With Array as Cache Key.mp42.67 MB
 05_05-Fragment Caching a Paginated List.mp48.32 MB
 05_06-Hash as a Fragment Cache Key.mp42.68 MB
 05_07-Cache Expiration Strategies, From Best to Worst.mp47.2 MB
 05_08-Cache Key Includes a Digest of View Contents.mp44.63 MB
 05_09-Demo Fragment Caching the Index Pages.mp424.89 MB
 05_10-Demo Fragment Caching the Show Pages.mp415.98 MB
 06_01-Introduction to Russian Doll Caching.mp49.72 MB
 06_02-Hiding Links.mp42.72 MB
 06_03-Time Zones.mp42.45 MB
 06_04-Increasing Cache Hits.mp44.69 MB
 06_05-Helping Rails Know What Partial was Used.mp46.52 MB
 06_06-Demo Implementing Russian Doll Caching.mp437.7 MB
 06_07-Benchmark Results From Russian Doll Caching.mp440.81 MB
 06_08-Summary.mp44.85 MB
 07_01-Introduction and the Responsiveness Myth.mp44.52 MB
 07_02-Installing Turbolinks.mp416.73 MB
 07_03-How Turbolinks Works.mp45.38 MB
 07_04-Third Party Plugin Compatibility and jQuery Turbolinks.mp414.04 MB
 07_05-Bind $(document) Events Outside 'ready'.mp44.24 MB
 07_06-All Scripts in 'body' are Evaluated.mp41.37 MB
 07_07-Opt Out for Selected Links.mp41.96 MB
 07_08-Testing Turbolinks.mp41.03 MB
 07_09-Demo Benchmarking Turbolinks.mp418.39 MB
 07_10-Transition Cache.mp416.88 MB
 08_01-Conclusion and Why Performance.mp41.95 MB
 08_02-Overview of Topics Covered in This Course.mp45.06 MB
 08_03-More Learning.mp410.69 MB
 rails-4-1-performance-fundamentals.zip16.25 MB
 01_01-Introduction.mp42.7 MB
 01_02-Why Performance.mp49.02 MB
 01_03-Premature Optimization.mp42.6 MB
 01_04-My Recommended Approach.mp419.82 MB
 01_05-Performance Vs. Throughput Vs. Scalability.mp43.87 MB
 01_06-Rails Performance on the Client Side, Server Side, and in Between.mp47.28 MB
 01_07-Summary.mp42.2 MB


Description

Speed up your Ruby on Rails 4.1 applications. With the help of some gems, all techniques in this course can also be used in Rails 3.2 apps. This course teaches pragmatic, Rails-specific techniques to profile performance, find and fix slow database queries, get alerted automatically whenever you create an N+1 query, and simulate latency and low bandwidth. You'll also learn to take advantage of the browser's cache with ETags or time-based expiration, set up Memcached for server-side caching, speed up view rendering with fragment caching, cache nested fragments with Russian Doll caching, and use Turbolinks and pjax to give a multi-page app the responsiveness of a single-page app.

Authored by: Brian Morearty
Duration: 4h 20m
Level: Beginner
Released: 7/4/2014


http://www.pluralsight.com/training/Courses/Description/rails-4-1-performance-fundamentals

CONTENT:
Introduction
- Introduction
- Why Performance?
- Premature Optimization
- My Recommended Approach
- Performance Vs. Throughput Vs. Scalability
- Rails Performance on the Client Side, Server Side, and in Between
- Summary

Ruby 2.1
- Introduction
- Copy-on-write Memory Sharing
- Generational Garbage Collection
- Faster Than 2.0
- Much Faster Than 1.9.3
- I Teach U App and Apache Bench
- Comparing 1.9.3 to 2.1.1 Using Apache Bench
- Memory Consumption in Ruby 2.1.0 and 2.1.1
- Summary

Rails Performance and the Database
- Introduction
- Profiling, X-Runtime, and the Browser's Network Debug Panel
- The Rails Log
- Pagination and Kaminari
- Missing Indexes and Lol_dba
- Bullet, N+1 Queries, and Counter Caches
- Rack-Mini-Profiler and Flamegraphs
- Select and Pluck
- The Query Cache
- New Relic and Rails Panel
- Do Not Order By :created_at
- Making Multiple Writes? Use a Transaction
- Iterating Over Tons of Rows? Use find_each
- Summary

Browser Caching
- Introduction and HTTP Headers
- Last-Modified and If-Modified-Since
- ETag and If-None-Match
- Cache-Control and Max-age
- Rack::ETag and Rack::ConditionalGet
- stale? and fresh_when?
- Declarative ETags and the ETagger Gem
- Setting Cache-Control: max-age With expires_in
- Disable Middleware that Modifies the Body
- Demo
- Summary

Fragment Caching
- Introduction and Cache Stores
- Setting Up Memcached in Rails and for Development
- Fragment Caching
- Fragment Caching With Array as Cache Key
- Fragment Caching a Paginated List
- Hash as a Fragment Cache Key
- Cache Expiration Strategies, From Best to Worst
- Cache Key Includes a Digest of View Contents
- Demo: Fragment Caching the Index Pages
- Demo: Fragment Caching the Show Pages
- Benchmark Results From Fragment Caching
- Summary

Russian Doll Caching
- Introduction to Russian Doll Caching
- Hiding Links
- Time Zones
- Increasing Cache Hits
- Helping Rails Know What Partial was Used
- Demo: Implementing Russian Doll Caching
- Benchmark Results From Russian Doll Caching
- Summary

Turbolinks and pjax
- Introduction and the Responsiveness Myth
- Installing Turbolinks
- How Turbolinks Works
- Third Party Plugin Compatibility and jQuery Turbolinks
- Bind $(document) Events Outside 'ready'
- All Scripts in 'body' are Evaluated
- Opt Out for Selected Links
- Testing Turbolinks
- Demo: Benchmarking Turbolinks
- Transition Cache
- pjax
- Summary

Conclusion
- Conclusion and Why Performance?
- Overview of Topics Covered in This Course
- More Learning

SCREENS:
imageimageimageimage

Sharing Widget


Download torrent
809.35 MB
seeders:3
leechers:8
Pluralsight - Rails 4.1 Performance Fundamentals