Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/tmm1/gctools

profiler/logger/oobgc for rgengc in ruby 2.1
https://github.com/tmm1/gctools

Last synced: 3 months ago
JSON representation

profiler/logger/oobgc for rgengc in ruby 2.1

Lists

README

        

## gctools

gc profiler/logger and oobgc for rgengc in ruby 2.1

### design

built on new apis and events offered in ruby 2.1:

* rb_gc_stat()
* rb_gc_latest_gc_info()
* RUBY_INTERNAL_EVENT_GC_START
* RUBY_INTERNAL_EVENT_GC_END_MARK
* RUBY_INTERNAL_EVENT_GC_END_SWEEP

### usage

#### logger

``` ruby
require 'gctools/logger'
```

#### oobgc

``` ruby
require 'gctools/oobgc'
GC::OOB.run # after every request
use(GC::OOB::UnicornMiddleware) # in config.ru for unicorn
```