• Stars
    star
    137
  • Rank 257,517 (Top 6 %)
  • Language
    Ruby
  • License
    MIT License
  • Created about 5 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Precompiles ActionView templates at app boot for Rails 6+

ActionviewPrecompiler

Provides eager loading of Action View templates.

This optimization aims to improve cold render times and to allow more memory to be shared via CoW on forking web servers.

For more information see:

Should I use this?

You probably don't need to.

This gem provides a place to test out an optimization we hope to eventually include in Rails where everyone can gain this benefit without any additional work or configuration πŸ€—. Right now I would love help validating that it (at least somewhat) accurately detects rendered views in your application ❀️.

That said, it shows promising results today πŸ“‰ so if you've measured that view compilation is an issue this should help! Please let me know!

The most likely downside of using this is that if this mispredicts render calls it will waste a little memory (somewhat ironically, since one goal is to save memory).

How it works

The main challenge in precompiling these templates is determining the locals they're going to be passed. Without the initialization, local vars look the same as method calls, so we need to compile separate copies for each different set of local variable passed in.

We determine the locals passed to each template by parsing all templates looking for render calls and extracting the local keys passed to that.

Right now this assumes every template with the same virtual_path takes the same locals (there may be smarter options, we just aren't doing them). A curse/blessing/actually still a curse of this approach is that mis-predicting render calls doesn't cause any issues, it just wastes RAM.

Templates are half-compiled using standard Action View handlers, so this should work for erb/builder/haml/whatever. Parsing is done using either Ruby 2.6's RubyVM::AbstractSyntaxTree or JRuby's parser.

Installation

Add this line to your application's Gemfile:

gem 'actionview_precompiler'

And then execute:

$ bundle install

Usage

To precompile views on app boot, create an initializer to perform precompilation

# config/initializers/actionview_precompiler.rb
ActionviewPrecompiler.precompile

It can also be run in verbose mode, which I use to tell which views it has detected. I usually run this in a console

ActionviewPrecompiler.precompile(verbose: true)

TODO

  • Support more render invocations
  • Parse controllers/helpers for more renders
  • Cache detected locals to avoid parsing cost
  • Upstream more bits to Rails

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jhawthorn/actionview_precompiler. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

Code of Conduct

Everyone interacting in the ActionviewPrecompiler project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

More Repositories

1

fzy

πŸ” A simple, fast fuzzy finder for the terminal
C
2,821
star
2

discard

πŸƒπŸ—‘ Soft deletes for ActiveRecord done right
Ruby
1,993
star
3

vernier

πŸ“ next generation CRuby profiler
Ruby
514
star
4

curl-to-ruby

⬇️ Convert a curl command into ruby's net/http
JavaScript
237
star
5

fzy.js

A javascript port of fzy's scoring algorithm. As seen on GitHub.com!
JavaScript
147
star
6

pub_grub

A ruby port of the PubGrub version solver
Ruby
146
star
7

meh

πŸŽ‘ a simple, minimalist, super fast image viewer using raw XLib
C
142
star
8

dkim

βœ‰οΈ Pure Ruby DKIM signature library with Rails integration
Ruby
89
star
9

execjs-fastnode

⚑ A faster Node.JS integration for Ruby/Rails ExecJS
Ruby
51
star
10

vecx

πŸ‘Ύ vecx vectrex emulator - sdl port
C
50
star
11

sheap

Interactive Ruby Heap Snapshot analyzer
Ruby
40
star
12

modelh

Replacement Model M controller board
HTML
39
star
13

rapidjson-ruby

A fast JSON library for Ruby
Ruby
34
star
14

tvart

Upload art to a Samsung "The Frame" TV
JavaScript
28
star
15

clouddns

☁️ A ruby DSL for managing DNS
Ruby
20
star
16

piink

🐷 Raspberry Pi e-paper display in Ruby
Ruby
19
star
17

fzy.rb

A ruby port of fzy's scoring algorithm.
C
12
star
18

ttytest

An acceptance test framework for interactive console applications
Ruby
11
star
19

fast_sqlite

Speeds up tests using sqlite ⚑
Ruby
10
star
20

sdlmap

🌍 A SDL + libcurl OpenStreetMap viewer
C++
10
star
21

dotfiles

my configs
Lua
10
star
22

ESPresso

β˜•οΈ Turning code into coffee: ESP32 espresso machine controller
C
9
star
23

bundler-explain

Gives better explanations of conflicts when running bundle update
Ruby
8
star
24

github_fast_changelog

Generate CHANGELOGs using github's v4 GraphQL API
Ruby
8
star
25

jokerss

🀑 Ruby/Rails feed reader designed for self-hosting
Ruby
8
star
26

roaring-ruby

Roaring compressed bitmaps for Ruby
Ruby
7
star
27

plugin.video.gomtv.net

πŸ“Ί GOMtv.net video addon for XBMC
Python
7
star
28

bccovidpod

BC COVID-19 Updates from Dr. Bonnie Henry - Converted to podcast
HTML
6
star
29

galette

πŸ’ŽπŸ₯ž Experimental dependency resolution algorithm for ruby gems
Ruby
5
star
30

arcana

πŸ§™β€β™‚οΈ pure-ruby file/libmagic implementation. VERY INCOMPLETE
Ruby
5
star
31

dynamic_locals

A Ruby to Ruby transpiler allowing dynamic local variables
Ruby
5
star
32

fullwidth

πŸ‡―πŸ‡΅ Convert ASCII to equivalent ο½†ο½•ο½Œο½Œο½—ο½‰ο½„ο½”ο½ˆ characters
Ruby
5
star
33

json_escape

Ruby
5
star
34

hawthos

C
4
star
35

mimemagic_stub

Ruby
4
star
36

c2dm-ruby

ruby interface to google android's Cloud to Device Messaging service
4
star
37

mpvsrv

Web interface and API for remote control of mpv
JavaScript
4
star
38

qrcli

Generates QR codes on the command line using ANSI terminal colors
Ruby
3
star
39

rds_slow_log

Ruby script to dump the slow query log from the mysql.slow_log on Amazon RDS instances
Ruby
3
star
40

noticat

Simple notification daemon and clock for dwm
3
star
41

levelfind

list directories and files in a level order traversal
C++
3
star
42

snek

Ruby
3
star
43

giff

πŸ’Ž Compare two .gem files
Ruby
2
star
44

st

My st configuration
C
2
star
45

bundler_wtf

Ruby
2
star
46

fzy-fpm-cookery

Shell
2
star
47

cruby_crash_info

Ruby
2
star
48

fzy-demo

Demo page for fzy.js
JavaScript
2
star
49

hawthjit

An experimental pure-Ruby JIT compiler
Ruby
2
star
50

circdraw

🎨 draws circles on things
C++
2
star
51

homebrew-fzy

Ruby
2
star
52

asmjit-ruby

Ruby wrapper for AsmJit: a lightweight library for machine code generation
C++
2
star
53

visdiff-ruby

Compare screenshots from ruby with visdiff.com
Ruby
2
star
54

rabl_to_jbuilder

Convert rabl templates to jbuilder syntax
Ruby
2
star
55

watchmaker

⌚ Runs `make` when files are changed.
Go
2
star
56

dwm

My dwm config
C
2
star
57

hsh

TIME MACHINE A barely functional shell I wrote for university in 2009
C
2
star
58

las2heightmap

Converts LAS lidar data to a PNG heightmap (with a weird encoding)
C++
2
star
59

adventofcode2017

Ruby
2
star
60

site-example

Build system for my personal blog at https://www.johnhawthorn.com/
Ruby
2
star
61

clocksay

⏰ A dumb thing for a "smart" alarm clock
Go
2
star
62

hawthrss

Ruby
2
star
63

riama

View only the questions and answers from reddit.com/r/iama posts.
Ruby
2
star
64

hawthfrag

Simple filesystem agnostic online file defragmenter for linux
C
2
star
65

hawthtest

Ruby
1
star
66

svgcal

svgcal
HTML
1
star
67

dwmstatus

My status script for dwm. Probably not useful unless you are me. If you are me, hello!
C
1
star
68

capybara-profile

Ruby
1
star
69

cool-repo

Ruby
1
star
70

hawth-rails-template

My template for creating rails applications
Ruby
1
star
71

doscat

Converts code page 437 with ANSI escapes to UTF-8
C
1
star
72

led_test_formatter

Display test runner progress on LED strips
Ruby
1
star
73

muffins

πŸͺ TIME CAPSULE: A game prototype from 2007 by @jhawthorn and @jarednorman
Python
1
star
74

rtrace

πŸ”΅ Time capsule! A ray tracer I wrote in 2009
C++
1
star
75

magnetman

TIME CAPSULE: November 2006 72Hour Game Development Competition entry (modern rewrite)
JavaScript
1
star
76

uncletbag

🍌 Search for quotes from arrested development
JavaScript
1
star
77

jhawthorn

1
star
78

crowfriend

Yet another twitter <-> IRC bridge. For openhack!
Ruby
1
star
79

rbdbg

A ptrace-based debugger written in Ruby
Ruby
1
star
80

ruby-capi

testing out publishing doxygen to gh-pages
CSS
1
star
81

git-pivotal

A composable integration between git and pivotal tracker
Ruby
1
star
82

toksay

Ruby
1
star
83

futurasky

⌚ A pebble watchface based on futuraweather powered by forecast.io
C
1
star
84

lune

🌘 An experimental alternative lua syntax
Lua
1
star
85

colbert

CSS
1
star
86

adventofcode2018

Ruby
1
star
87

quoth

1
star
88

155pod.com

HTML
1
star
89

rapidash

A minimal javascript dashboard
CoffeeScript
1
star
90

colbert-generator

Ruby
1
star
91

mpvctl

mpc, but for mpv
Ruby
1
star
92

garagedoo.rb

Ruby
1
star
93

untappd-slack

A slack app which posts untappd check-ins
JavaScript
1
star
94

cowefficient

Test of Ruby's CoW behaviour
Ruby
1
star
95

v60_drain

A drainage stand for a Hario v60
OpenSCAD
1
star