7 questions
3
votes
0
answers
217
views
Numpy IO seems to have an 2GB overhead in StorNex (cvfs) File System
TL;DR:
Initally I thought the numpy load functions doubles memory usage at peak
after some additional tests it seems like the underlying file system (StorNex [cfvs]) leads to a size-independent 2GB ...
9
votes
1
answer
11k
views
cpuprofile and memprofile in golang testing
I tried the command go test -cpuprofile cpu.out on a GO test file and it resulted in a file cpu.out which is full of many 64 bit numbers. It doesn't make any sense to me. What did the command do and ...
1
vote
1
answer
252
views
OCaml memory profiling with Memprof - TypeRex Utility
My program uses all of available memory, so I wanted to check which functions and abstracts are spoiling my project. I decided to use Memprof, so I installed their compiler and compiled my code with ...
4
votes
1
answer
1k
views
Rails application not freeing memory?
In my rails application total object are increasing with every request. Objects are not freeing after GC runs. I am using Rails 3.2.3 and ruby 1.9.3.
Can someone point me in right direction ? Where ...
4
votes
1
answer
203
views
How to configure memprof in a Rails 2.3.14 application?
I have added these lines in my config/initializer
require 'memprof/middleware'
config.middlewares.use(Memprof::Middleware)
require 'memprof/tracer'
config.middleware.insert(0, Memprof::Tracer)
...
0
votes
1
answer
629
views
How to configure memprof in a Rails 3 application?
(First of all I don't speak english as well as I wish, I hope you forgive my mistakes :S )
I am very newbie with Ruby and Rails and I am very confused and frustrated because of the memory leaks that ...
5
votes
2
answers
551
views
Ruby 1.8.7: Symbol not found Error
Just did a fresh install of ruby 1.8.7 REE and MRI on a machine with fresh gem sets (Using RVM) Yet in each of them when I try to use memprof i get this error
$ gem install memprof
$ irb
>> ...