diff --git a/performance/benchmark.rb b/performance/benchmark.rb index b61e9057c..9d68e727d 100644 --- a/performance/benchmark.rb +++ b/performance/benchmark.rb @@ -3,7 +3,13 @@ require 'benchmark/ips' require_relative 'theme_runner' -RubyVM::YJIT.enable if defined?(RubyVM::YJIT) +if defined?(RubyVM::YJIT) + RubyVM::YJIT.enable + puts "* YJIT enabled" +else + puts "* YJIT not enabled" +end + Liquid::Environment.default.error_mode = ARGV.first.to_sym if ARGV.first profiler = ThemeRunner.new @@ -18,8 +24,8 @@ phase = ENV["PHASE"] || "all" - x.report("tokenize:") { profiler.tokenize } if phase == "all" || phase == "tokenize" - x.report("parse:") { profiler.compile } if phase == "all" || phase == "parse" - x.report("render:") { profiler.render } if phase == "all" || phase == "render" - x.report("parse & render:") { profiler.run } if phase == "all" || phase == "run" + x.report("tokenize:") { profiler.tokenize_all } if phase == "all" || phase == "tokenize" + x.report("parse:") { profiler.compile_all } if phase == "all" || phase == "parse" + x.report("render:") { profiler.render_all } if phase == "all" || phase == "render" + x.report("parse & render:") { profiler.run_all } if phase == "all" || phase == "run" end diff --git a/performance/memory_profile.rb b/performance/memory_profile.rb index e2934297a..ac2574d24 100644 --- a/performance/memory_profile.rb +++ b/performance/memory_profile.rb @@ -57,7 +57,7 @@ def sanitize(string) runner = ThemeRunner.new Profiler.run do |x| - x.profile('parse') { runner.compile } - x.profile('render') { runner.render } + x.profile('parse') { runner.compile_all } + x.profile('render') { runner.render_all } x.tabulate end diff --git a/performance/profile.rb b/performance/profile.rb index 70740778d..7a00230fa 100644 --- a/performance/profile.rb +++ b/performance/profile.rb @@ -1,26 +1,42 @@ # frozen_string_literal: true require 'stackprof' +require 'fileutils' require_relative 'theme_runner' +output_dir = ENV['OUTPUT_DIR'] || "/tmp/liquid-performance" +FileUtils.mkdir_p(output_dir) + Liquid::Template.error_mode = ARGV.first.to_sym if ARGV.first profiler = ThemeRunner.new -profiler.run +profiler.run_all # warmup -[:cpu, :object].each do |profile_type| - puts "Profiling in #{profile_type} mode..." - results = StackProf.run(mode: profile_type) do +[:cpu, :object].each do |mode| + puts + puts "Profiling in #{mode} mode..." + puts "writing to #{output_dir}/#{mode}.profile:" + puts + StackProf.run(mode: mode, raw: true, out: "#{output_dir}/#{mode}.profile") do 200.times do - profiler.run + profiler.run_all end end - if profile_type == :cpu && (graph_filename = ENV['GRAPH_FILENAME']) - File.open(graph_filename, 'w') do |f| - StackProf::Report.new(results).print_graphviz(nil, f) + result = StackProf.run(mode: mode) do + 100.times do + profiler.run_all end end - StackProf::Report.new(results).print_text(false, 20) - File.write(ENV['FILENAME'] + "." + profile_type.to_s, Marshal.dump(results)) if ENV['FILENAME'] + StackProf::Report.new(result).print_text(false, 30) +end + +puts +puts "files in #{output_dir}:" +Dir.glob("#{output_dir}/*").each do |file| + puts " #{file}" end +puts "Recommended:" +puts " stackprof --d3-flamegraph #{output_dir}/cpu.profile > #{output_dir}/flame.html" +puts " stackprof --method #{output_dir}/cpu.profile" +puts " etc" diff --git a/performance/shopify/database.rb b/performance/shopify/database.rb index 893c4e9d5..922fde344 100644 --- a/performance/shopify/database.rb +++ b/performance/shopify/database.rb @@ -32,19 +32,36 @@ def self.tables end end - # Some standard direct accessors so that the specialized templates - # render correctly - db['collection'] = db['collections'].values.first db['product'] = db['products'].values.first db['blog'] = db['blogs'].values.first db['article'] = db['blog']['articles'].first - db['cart'] = { + # Some standard direct accessors so that the specialized templates + # render correctly + db['collection'] = db['collections'].values.first + db['collection']['tags'] = db['collection']['products'].map { |product| product['tags'] }.flatten.uniq.sort + + db['tags'] = db['collection']['tags'][0..1] + db['all_tags'] = db['products'].values.map { |product| product['tags'] }.flatten.uniq.sort + db['current_tags'] = db['collection']['tags'][0..1] + db['handle'] = db['collection']['handle'] + + db['cart'] = { 'total_price' => db['line_items'].values.inject(0) { |sum, item| sum + item['line_price'] * item['quantity'] }, 'item_count' => db['line_items'].values.inject(0) { |sum, item| sum + item['quantity'] }, 'items' => db['line_items'].values, } + db['linklists'] = db['link_lists'] + + db['shop'] = { + 'name' => 'Snowdevil', + 'currency' => 'USD', + 'money_format' => '${{amount}}', + 'money_with_currency_format' => '${{amount}} USD', + 'money_format_with_currency' => 'USD ${{amount}}', + } + db end end diff --git a/performance/shopify/vision.database.yml b/performance/shopify/vision.database.yml index 9f38c3048..15e206c24 100644 --- a/performance/shopify/vision.database.yml +++ b/performance/shopify/vision.database.yml @@ -345,8 +345,7 @@ products: featured_image: products/arbor_draft.jpg images: - products/arbor_draft.jpg - description: - The Arbor Draft snowboard wouldn't exist if Polynesians hadn't figured out how to surf hundreds of years ago. But the Draft does exist, and it's here to bring your urban and park riding to a new level. The board's freaky Tiki design pays homage to culture that inspired snowboarding. It's designed to spin with ease, land smoothly, lock hook-free onto rails, and take the abuse of a pavement pounding or twelve. The Draft will pop off kickers with authority and carve solidly across the pipe. The Draft features targeted Koa wood die cuts inlayed into the deck that enhance the flex pattern. Now bow down to riding's ancestors. + description: The Arbor Draft snowboard wouldn't exist if Polynesians hadn't figured out how to surf hundreds of years ago. But the Draft does exist, and it's here to bring your urban and park riding to a new level. The board's freaky Tiki design pays homage to culture that inspired snowboarding. It's designed to spin with ease, land smoothly, lock hook-free onto rails, and take the abuse of a pavement pounding or twelve. The Draft will pop off kickers with authority and carve solidly across the pipe. The Draft features targeted Koa wood die cuts inlayed into the deck that enhance the flex pattern. Now bow down to riding's ancestors. variants: - *product-1-var-1 - *product-1-var-2 @@ -377,8 +376,7 @@ products: featured_image: products/element58.jpg images: - products/element58.jpg - description: - The Element is a technically advanced all-mountain board for riders who readily transition from one terrain, snow condition, or riding style to another. Its balanced design provides the versatility needed for the true ride-it-all experience. The Element is exceedingly lively, freely initiates, and holds a tight edge at speed. Its structural real-wood topsheet is made with book-matched Koa. + description: The Element is a technically advanced all-mountain board for riders who readily transition from one terrain, snow condition, or riding style to another. Its balanced design provides the versatility needed for the true ride-it-all experience. The Element is exceedingly lively, freely initiates, and holds a tight edge at speed. Its structural real-wood topsheet is made with book-matched Koa. variants: - *product-2-var-1 @@ -411,8 +409,7 @@ products: - products/technine1.jpg - products/technine2.jpg - products/technine_detail.jpg - description: - 2005 Technine Comic Series Description The Comic series was developed to be the ultimate progressive freestyle board in the Technine line. Dependable edge control and a perfect flex pattern for jumping in the park or out of bounds. Landins and progression will come easy with this board and it will help your riding progress to the next level. Street rails, park jibs, backcountry booters and park jumps, this board will do it all. + description: 2005 Technine Comic Series Description The Comic series was developed to be the ultimate progressive freestyle board in the Technine line. Dependable edge control and a perfect flex pattern for jumping in the park or out of bounds. Landins and progression will come easy with this board and it will help your riding progress to the next level. Street rails, park jibs, backcountry booters and park jumps, this board will do it all. variants: - *product-3-var-1 - *product-3-var-2 @@ -446,8 +443,7 @@ products: images: - products/technine3.jpg - products/technine4.jpg - description: - 2005 Technine Comic Series Description The Comic series was developed to be the ultimate progressive freestyle board in the Technine line. Dependable edge control and a perfect flex pattern for jumping in the park or out of bounds. Landins and progression will come easy with this board and it will help your riding progress to the next level. Street rails, park jibs, backcountry booters and park jumps, this board will do it all. + description: 2005 Technine Comic Series Description The Comic series was developed to be the ultimate progressive freestyle board in the Technine line. Dependable edge control and a perfect flex pattern for jumping in the park or out of bounds. Landins and progression will come easy with this board and it will help your riding progress to the next level. Street rails, park jibs, backcountry booters and park jumps, this board will do it all. variants: - *product-4-var-1 @@ -478,8 +474,7 @@ products: featured_image: products/burton.jpg images: - products/burton.jpg - description: - The Burton boots are particularly well on snowboards. The very best thing about them is that the according picture is cubic. This makes testing in a Vision testing environment very easy. + description: The Burton boots are particularly well on snowboards. The very best thing about them is that the according picture is cubic. This makes testing in a Vision testing environment very easy. variants: - *product-5-var-1 - *product-5-var-2 @@ -516,8 +511,7 @@ products: featured_image: products/ducati.jpg images: - products/ducati.jpg - description: -
Producing 170hp (125kW) and with a dry weight of just 169kg (372.6lb), the new 1198 S now incorporates more World Superbike technology than ever before by taking the 1198 motor and adding top-of-the-range suspension, lightweight chassis components and a true racing-style traction control system designed for road use.
The high performance, fully adjustable 43mm Öhlins forks, which sport low friction titanium nitride-treated fork sliders, respond effortlessly to every imperfection in the tarmac. Beyond their advanced engineering solutions, one of the most important characteristics of Öhlins forks is their ability to communicate the condition and quality of the tyre-to-road contact patch, a feature that puts every rider in superior control. The suspension set-up at the rear is complemented with a fully adjustable Öhlins rear shock equipped with a ride enhancing top-out spring and mounted to a single-sided swingarm for outstanding drive and traction. The front-to-rear Öhlins package is completed with a control-enhancing adjustable steering damper.
variants: @@ -636,7 +630,6 @@ products: - *product-9-var-2 - *product-9-var-3 - # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # Line Items # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @@ -644,8 +637,8 @@ products: line_items: - &line_item-1 id: 1 - title: 'Arbor Draft' - subtitle: '151cm' + title: "Arbor Draft" + subtitle: "151cm" price: 29900 line_price: 29900 quantity: 1 @@ -654,8 +647,8 @@ line_items: - &line_item-2 id: 2 - title: 'Comic ~ Orange' - subtitle: '159cm' + title: "Comic ~ Orange" + subtitle: "159cm" price: 19900 line_price: 39800 quantity: 2 @@ -681,7 +674,7 @@ links: - &link-4 id: 4 title: Powered by Shopify - url: 'http://shopify.com' + url: "http://shopify.com" - &link-5 id: 5 title: About Us @@ -715,8 +708,6 @@ links: title: Catalog url: /collections/all - - # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # Link Lists # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @@ -724,8 +715,8 @@ links: link_lists: - &link-list-1 id: 1 - title: 'Main Menu' - handle: 'main-menu' + title: "Main Menu" + handle: "main-menu" links: - *link-12 - *link-5 @@ -733,8 +724,8 @@ link_lists: - *link-8 - &link-list-2 id: 1 - title: 'Footer Menu' - handle: 'footer' + title: "Footer Menu" + handle: "footer" links: - *link-5 - *link-6 @@ -768,8 +759,7 @@ collections: title: Snowboards handle: snowboards url: /collections/snowboards - description: -This is a description for my Snowboards collection.
+ description:This is a description for my Snowboards collection.
products: - *product-1 - *product-2 @@ -787,8 +777,8 @@ collections: - &collection-5 id: 5 title: Paginated Sale - handle: 'paginated-sale' - url: '/collections/paginated-sale' + handle: "paginated-sale" + url: "/collections/paginated-sale" products: - *product-1 - *product-2 @@ -799,8 +789,8 @@ collections: - &collection-6 id: 6 title: All products - handle: 'all' - url: '/collections/all' + handle: "all" + url: "/collections/all" products: - *product-7 - *product-8 @@ -812,7 +802,6 @@ collections: - *product-4 - *product-5 - # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # Pages and Blogs # =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @@ -823,8 +812,7 @@ pages: handle: contact url: /pages/contact author: Tobi - content: - "You can contact us via phone under (555) 567-2222.
+ content: "You can contact us via phone under (555) 567-2222.
Our retail store is located at Rue d'Avignon 32, Avignon (Provence).
Opening Hours:
Monday through Friday: 9am - 6pm
Saturday: 10am - 3pm
Sunday: closed
Welcome to your Shopify store! The jaded Pixel crew is really glad you decided to take Shopify for a spin.
To help you get you started with Shopify, here are a couple of tips regarding what you see on this page.
The text you see here is an article. To edit this article, create new articles or create new pages you can go to the Blogs & Pages tab of the administration menu.
The Shopify t-shirt above is a product and selling products is what Shopify is all about. To edit this product, or create new products you can go to the Products Tab in of the administration menu.
While you're looking around be sure to check out the Collections and Navigations tabs and soon you will be well on your way to populating your site.
And of course don't forget to browse the theme gallery to pick a new look for your shop!
Shopify is in beta
If you would like to make comments or suggestions please visit us in the Shopify Forums or drop us an email.