blob: 832bdd19b59876400aa67473bd31812803795e48 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
Profile provides a way to Profile your Ruby application.
Profiling your program is a way of determining which methods are called and how
long each method takes to complete. This way you can detect which methods are
possible bottlenecks.
Profiling your program will slow down your execution time considerably, so
activate it only when you need it. Don't confuse benchmarking with profiling.
|