I am working on a Rails 3 project which was using Mongrel as web server but now I changed it to Passenger web server. And because of this my application respond very slowly.
So I want to know about the performance difference between these two server in production environment.
Performance difference between Passanger and Mongrel web server
95 views Asked by Nishant Upadhyay At
1
There are 1 answers
Related Questions in RUBY
- how to integrate cashfree payment gateway in ruby on rails project
- RSpec Capybara throwing Selenium error when trying to click a button with browser confirm
- Duplicate GET requests - Rails & Heroku
- convert csv file with json data inside to a column, rows table in 2nd csv file
- Installing dependencies from a gemspec file
- Verifying Google Identity OAuth2 token with Ruby
- Java code of AES/GCM/NoPadding encryption algorithm with authentication tag
- How to fix error in model with gem lockbox
- Cannot install Ruby Gem on Window
- use logstash filter ,aes gcm encrypted in ruby,but cannot decrypted in java
- In Rails 7, what is the right ActiveRecord callback to use if I need to prevent (or rollback) persistance on error?
- How can I go through an array and still remove elements from it
- Nokogiri only returning 5 results
- How do I get the fullscreen mode in firefox?
- undefined group option when using branch reset group regex in Ruby
Related Questions in RUBY-ON-RAILS-3
- is there a way to write this clean?
- HTML to pdf conversion using wickedpdf with page count
- Rails rspec feature itegration testing for basic auhentication
- ImageKit works fine on local but doesn't work on heroku why?
- SSL Configuration Issue: Website Redirects Too Many Times and CSRF Token Mismatch
- How to fix permission error while install bundle for rails project on ubuntu?
- Active Admin filters not displaying on screen but present in the html DOM
- Why is the page title not not changing in a turbo-ios app
- Resolving 'net::ERR_BLOCKED_BY_CLIENT' Error After Upgrading Ruby to 3.2.2 and Rails to 7 with jsbundling Gem
- Cant install Mysql2 Gem::Ext::BuildError: ERROR: Failed to build gem native extension
- Filtering Users with Associated Records by Specific Date in Rails
- How to handle the params for accepts_nested_attributes_for for has_many association containing a lot of fields on both associated table
- Issue when Rounding Decimal values
- Map an activerecord array to avoid that two item with the same attribute are in a sequential position
- Devise Registration Ruby on Rails - Migration Error: Duplicate column name
Related Questions in PASSENGER
- Log ruby on rails application running in phusion passenger to aws cloudwatch
- where do i set the licence_proxy_url in nginx for passegner enterprise?
- Troubles with installing redmine on linux server Ubuntu 22.04.4
- Missing `secret_key_base` for 'production' environment ROR version 7
- Need some advice on Phusion/Passenger setup
- is it possible to specify an index.html location for a passener + nginx app?
- duplicate path in network request using nginx, passenger, ruby on rails
- Error running a Sveltekit app on cpanel using phusion passenger
- How can I solve this issu : /bin/sh: 1: exec: python: not found. Deploying Django app with Passenger
- Why is the GET route in my express server unable to get the express session (with Phusion Passenger)?
- log error with passenger in rails 6 app : set PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY=0 to disable
- nginx unexpected responses with ruby 3.2.2, rails 7 and passenger on ec2 instance
- Why does Passenger restarts my node js app every day?
- Issue with Passenger + Flask on DreamHost Shared Hosting
- Cannot run python Flask app cPanel using PhusionPassenger
Related Questions in MONGREL
- rails 2.3 server running inside vagrant environment not accessible in host machine mac os x browsers
- mongrel_rails - programatically report which port it's running on
- Deploying Rails 4 in production on windows apache MySQL
- Performance difference between Passanger and Mongrel web server
- Fatal error when starting Tomcat mongrel plugin from inside eclipse
- Rails. How to deploy on a Windows machine without command prompt/command window
- Errors installing Mongrel 1.2.0_pre2 on Ruby 2.1.x installed via PPA from Brightbox
- Failed to use mongrel on Windows server with Rails 3 and Ruby 2.1
- Does application server workers spawn threads?
- Routing while upgrading ruby/rails and moving from mongrel to unicorn
- can I run rails 4 on mongrel?
- ruby on rails error while starting mongrel :: no such file to load -- svn/core (MissingSourceFile)
- Any plug-ins similar to mongrel_proctitle for Phusion passenger
- Rails 3.2.14 will not run Mongrel
- Error code: ERR_RESPONSE_HEADERS_MULTIPLE_CONTENT_LENGTH
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
First of all, Passenger shouldn't be too slow. Unless you're dealing with some significant traffic, I imagine any inherent performance differences between passenger and mongrel shouldn't matter too much. Most likely, the slowness is caused by the way you've got passenger configured.
Does it respond slowly only when you haven't sent a request in a while? If so this should help: Slow initial server startup when using Phusion Passenger and Rails
I remember having this issue with passenger a while ago, and resolving it. I don't remember exactly what I did but if you google it I do know there's a lot of info, so I'd start with that and update your question once you have some more specifics.