jemalloc 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/README.md +4 -4
- data/ext/jemalloc/extconf.rb +1 -1
- data/ext/jemalloc/jemalloc-3.2.0.tar.bz2 +0 -0
- data/lib/jemalloc/version.rb +1 -1
- metadata +3 -9
- data/ext/jemalloc/jemalloc-3.1.0.tar.bz2 +0 -0
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# jemalloc
|
2
2
|
|
3
3
|
Instant [jemalloc](http://www.canonware.com/jemalloc/) injection into Ruby apps, for better performance and less memory.
|
4
4
|
|
@@ -8,15 +8,15 @@ Ruby relies on malloc(3) for its internal memory allocation. Using better malloc
|
|
8
8
|
|
9
9
|
jemalloc is a malloc(3) implementation, originally developed by Jason Evans. jemalloc handles small object better than other allocators so usually gives better performance and memory usage to Ruby programs.
|
10
10
|
|
11
|
-
# Why
|
11
|
+
# Why jemalloc?
|
12
12
|
|
13
13
|
Installing jemalloc separately from Ruby is pain in some cases (e.g. Heroku, EngineYard, etc). `je` gem contains jemalloc itself within a gem, and enables instant jemalloc ingection in a really easy way: install `je` gem, and launch your app with `je` command.
|
14
14
|
|
15
15
|
# Install
|
16
16
|
|
17
|
-
Install `
|
17
|
+
Install `jemalloc` gem in your application. For [bundler](http://gembundler.com/) based application, please add the following line into your Gemfile, and and install `jemalloc` by `bundle install`.
|
18
18
|
|
19
|
-
gem '
|
19
|
+
gem 'jemalloc'
|
20
20
|
|
21
21
|
# Usage
|
22
22
|
|
data/ext/jemalloc/extconf.rb
CHANGED
Binary file
|
data/lib/jemalloc/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jemalloc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-11-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -75,7 +75,7 @@ files:
|
|
75
75
|
- Rakefile
|
76
76
|
- bin/je
|
77
77
|
- ext/jemalloc/extconf.rb
|
78
|
-
- ext/jemalloc/jemalloc-3.
|
78
|
+
- ext/jemalloc/jemalloc-3.2.0.tar.bz2
|
79
79
|
- jemalloc.gemspec
|
80
80
|
- lib/jemalloc/version.rb
|
81
81
|
homepage: https://github.com/treasure-data/jemalloc-rb
|
@@ -90,18 +90,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
90
|
- - ! '>='
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: '0'
|
93
|
-
segments:
|
94
|
-
- 0
|
95
|
-
hash: -2381634919413440270
|
96
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
94
|
none: false
|
98
95
|
requirements:
|
99
96
|
- - ! '>='
|
100
97
|
- !ruby/object:Gem::Version
|
101
98
|
version: '0'
|
102
|
-
segments:
|
103
|
-
- 0
|
104
|
-
hash: -2381634919413440270
|
105
99
|
requirements: []
|
106
100
|
rubyforge_project:
|
107
101
|
rubygems_version: 1.8.24
|
Binary file
|