Tagged Questions
0
votes
0answers
11 views
Dealing with gzipped request body in Rails
I have two Rails applications that talk to each other. One of the parameter of the requests is usually a big string of data. I want to gzip this big parameter to improve de request time.
I'm using ...
1
vote
1answer
245 views
Missing Content-Length header when using Nginx + Gzip + Unicorn
I don't know why http response is missed "Content-Length header" when I use gzip in nginx, i'm really getting stuck,please somebody help me, thank you so much!
this is my config file,
nginx.conf
...
3
votes
2answers
295 views
Rails 3.2 + Heroku + S3 + CloudFront: Not serving gzip css js
I am running Rails 3.2 with assets_sync.
A gz version of my css and js are created. CloudFront is not serving the gzip version even though the header requested for gzip,deflate.
I also tried ...
3
votes
0answers
169 views
Get Rails pipeline to gzip xml assets
I'm using the rails asset pipeline for my rails site. The assets:precompile task properly processes and creates gzip versions of my css and js files automatically.
I've now added some xml assets. ...
0
votes
0answers
73 views
how can i compress the data using gzip and decompress the gzip data from iphone app?
I have rails app where i want to provide the json data through api for iphone app. The data to be sent is huge, so i would like to compress the data using gzip and send it to iphone app where the ...
11
votes
2answers
2k views
Any way to serve gzip assets from heroku?
I'm wondering if there is any way to get the Rails webserver (thin) to serve the *.gz files the asset pipeline creates. As I understand, those have a higher compression level than that of ...
0
votes
1answer
482 views
Why is my js+css not compressed in production on Rails + Heroku?
I am running my producction environment with following settings, and it appears that it is minifying but is not gzipping/compressing the response.
# Disable Rails's static asset server (Apache or ...
1
vote
0answers
115 views
How to send paperclip file compressed to client browser?
I have an app which allows a user to upload a document and converts it using a paperclip processor. Unfortunately, the processor converts the file into multiple files (i.e. file, file01, file02). I ...
0
votes
1answer
196 views
nginx : gizip_static : appears to not be working
Ok my stack is Ubuntu, Nginx 1, and Unicorn. I want to have Nginx serve precompiled gzips of static content.
relevant nginx config:
location ~ ^/assets/ {
gzip_static on;
gzip_http_version ...
1
vote
2answers
1k views
gzip not working in nginx + passenger
I have an nginx + passenger installed on Amazon Linux EC2 server, running a Rails application. The application yields JSON responses.
The JSON response is rendered with length header:
# ...
3
votes
1answer
951 views
Nginx and Rails gzip configuration
I have problem with nginx + gzip + rails configuration. My nging.conf looks like this:
gzip on;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_proxied any;
gzip_min_length 1100;
gzip_buffers 16 8k;
...
1
vote
2answers
438 views
Ruby Open3 Popen3 Utility function to open bz, gz, and txt files. Errors with 'No such file or directory' or 'not opened for reading'
I'm trying to write a utility function that will open 3 different types of files: .bz2, .gz, and .txt. I can't just use File.read because it gives me garbage back for the compressed files. I'm ...
0
votes
1answer
693 views
Gzip decompress JSON POST body in Rails/Passenger/Nginx
We have a function in our Rails code that accepts a JSON POST body:
contacts = ActiveSupport::JSON.decode(request.raw_post.gsub("+", ""))
(I'm aware that I can get this from params["_json"] as ...
3
votes
1answer
282 views
Thin GZIP decode on local machine
I'm using thin as a Rails server, and I want to send some JSON data gzipped, but in localhost it falls with MultiJson error (unknown symbols).
How can I enable gzip support for local thin using ...
1
vote
1answer
735 views
How to turn on GZIP compression on ruby THIN server (Rails 3.1) on windows
I wonder how to enable GZIP compression on my Ruby THIN server on windows machine for Rails 3.1 app?
Well, i've never worked with GZIP before.
Thanks!
4
votes
2answers
1k views
Heroku conflict between gzipping assets and precompiling assets
I've been running a Rails 3.1 app on Heroku Cedar Stack for a couple of months now. I'm using Rack::Deflater middleware to gzip my content and achieve this by
config.middleware.insert_before ...
4
votes
3answers
3k views
Where to insert Rack::Deflater in the rack?
I currently have the following:
use Rack::Rewrite
use Rack::Cache, {:verbose=>true, :metastore=>"memcached://localhost:11211/rack-cache/meta", ...
10
votes
1answer
3k views
Get NGINX to serve .gz compressed asset files
Rails 3.1 has a convenient system which can compress files into .gz files. However, instead what I've done is I've moved all the asset files that are created with assets:precompile to a static ...
0
votes
2answers
379 views
Deal with gzipped body in PUT requests to heroku
I'm working on a rails app that communicates with an iphone app via a restful xml interface. The iphone app developer wants to gzip the body of his requests since he's sending up various media. I ...
2
votes
1answer
517 views
How to enable output compression (gzip) on everything that goes out of my Ruby on rails on Mongrel/WEBrick Server?
I am not sure this is the right place to ask this question, as answer to this may be coding solution or a config solution :) any way,
I am using ruby 1.8.7 and rails 2.3.11 running on the Mongrel ...
1
vote
1answer
470 views
How can I test whether or not my gzipped css file is being served?
I'm using jammit to embed data-uri's in my rails app. This is not a jammit or rails specific question though.
For each css file generated, jammit creates two versions i.e.:
style-datauri.css (75KB)
...
1
vote
4answers
1k views
Compressing a JSON response from a Rails app
We have an app that queries for locations for a customer. We're getting to the point where some customers could have upwards of 10,000 locations. The JSON response for this can get quite large, over ...
2
votes
2answers
310 views
Creating and Extracting a tgz archive in Rails
Does anyone know how to archive a folder and its contained files as a tgz archive using Rails? What I would like todo is archive the contents of the folder and then have another script which extracts ...
1
vote
3answers
217 views
In rails, how to g-zip a combined javascript file which generated by the 'javascript_include_tag'?
I was thinking javascript_include_tag with :cache option would g-zip the combined javascript file automatically:
<%= javascript_include_tag 'j1.js', 'j2.js', 'j3.js', :cache => 'js_all' %>
...
0
votes
1answer
859 views
Opening and decompressing an XML URL in Rails
I'm building a rails app that takes information about products from an XML datafeed hosted on a 3rd party server. This XML is sent gzipped, and I'm having serious difficulty in getting anywhere with ...
1
vote
4answers
5k views
I get this error when installing a gem: “ERROR: While executing gem … (Zlib::GzipFile::Error)” [duplicate]
Possible Duplicate:
ERROR: While executing gem … (Zlib::GzipFile::Error) not in gzip format
When installing a gem on my system, I get the following error:
gem install blackbook --version ...
13
votes
5answers
7k views
How do I gzip webpage output with Rails?
What is the best plugin for Rails that gzips my webpage output?
Edit:
The company I am hosting with has stated they will not install mod_deflate.