It seems easier to scale the Heroku dynos or AWS servers with a slider, but is it really required?
When developers see that their application is slow, their first reflex is to increase the dyno size. They hardly ever look at the application code. I've seen a lots of Ruby applications and most of them are over-scaled and wasting money.
I intend to start by focusing on areas where Ruby takes a performance hit, such as Garbage collection and memory management.
Then I will talk about the solutions to fix them in Ruby applications.
Further I will showcase how why its better to use one function in Ruby over the other and the performance hit the application is taking because of them. These will be backed by the benchmarking suite I have created from my experience.
Rails is a web application framework written in Ruby that makes programming web apps easier by making assumptions to get developers started quickly. It utilizes conventions like DRY, MVC, and RESTful design. MVC separates business logic from presentation logic into models, views, and controllers. Controllers receive requests, interact with models to retrieve data, and render views to generate responses. Developers can also use Ruby gems to add additional functionality like user authentication, file uploads, and payment processing to their Rails applications.
It seems easier to scale the Heroku dynos or AWS servers with a slider, but is it really required?
When developers see that their application is slow, their first reflex is to increase the dyno size. They hardly ever look at the application code. I've seen a lots of Ruby applications and most of them are over-scaled and wasting money.
I intend to start by focusing on areas where Ruby takes a performance hit, such as Garbage collection and memory management.
Then I will talk about the solutions to fix them in Ruby applications.
Further I will showcase how why its better to use one function in Ruby over the other and the performance hit the application is taking because of them. These will be backed by the benchmarking suite I have created from my experience.
Rails is a web application framework written in Ruby that makes programming web apps easier by making assumptions to get developers started quickly. It utilizes conventions like DRY, MVC, and RESTful design. MVC separates business logic from presentation logic into models, views, and controllers. Controllers receive requests, interact with models to retrieve data, and render views to generate responses. Developers can also use Ruby gems to add additional functionality like user authentication, file uploads, and payment processing to their Rails applications.
HackConf2016 - Ruby on Rails: Unexpected journeyDimitar Danailov
?
Презентацията ми за HackConf2016 за Ruby on Rails
Appplication: https://github.com/dimitardanailov/hobbit-hackconf-2015
Gist: https://gist.github.com/dimitardanailov/980b1dd45bee7fac4b44d9b91885a8c8
Rails security: above and beyond the defaultsMatias Korhonen
?
- The document discusses securing Rails web applications by improving on the framework's default security settings.
- It emphasizes using HTTPS to encrypt traffic, securing certificates with tools like Let's Encrypt, and strengthening configurations using the Mozilla SSL Configuration Generator.
- Content Security Policies provide an added layer of security by restricting what content can be loaded from external sources, reducing vulnerabilities, though they require careful configuration.
- HTTP Public Key Pinning can lock users out if misconfigured, so caution is advised. Overall, the talk provides guidance on tightening security beyond Rails defaults.
A collection of problems and solutions worked through Wanelo team as they were scaling the site with the rapid demand of users. By Konstantin Gredeskoul and Eric Saxby.
Introduction to deployment with Ruby on Rails presented at JAX09 in Mainz by Jonathan Weiss.
Learn about the deployment architectures and setups (web and app tier) and using Capistrano/Webistrano.
This document discusses strategies for scaling a Ruby on Rails application from a small startup to an enterprise-level application. It recommends starting with a small, highly productive team using Rails for rapid development. As the application and user base grow, it suggests adding caching, load balancing, and splitting the application across multiple servers. It also discusses personalizing pages with AJAX to improve caching. The goal is to scale the application efficiently while keeping development agile and in Rails.
The Fastest Possible Way to Develop an Interactive AppLINE Corporation
?
Kenichiro Nakamura
SDK & Tool contributor
You might have productivity issues in development for LINE platforms, such as LINE Bot, Clova, LINE Pay. In this session, he will share best practices for interactive app development.
Optimization of sophisticated development environments like Visual Studio Code enables us to develop interactive apps faster while achieving higher precision. This session presents the demonstration of debugging that leverages LINE Simulator, Clova Simulator, which are being developed as open source, and other code editors.
※C# and Node.js will be used.