Skip to content

andytill/perflinks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Erlang Performance Links

Nuggets of erlang performance wisdom, from those kind enough to share.

EProf

eprof attaches to a running process and and can produces a flat list of functions that are most called, and took the most time.

FProf

fprof attaches to a running process, like eprof but gives a hierarchical breakdown of function calls counts and their total time. Useful when there are several calls throughout a process but it is not clear which one is taking the most time.

Beyond OTP

Loïc Hoguin achieves LOLSPEED in cowboy by ditching OTP behaviours and rolling his own, OTP compliant processes in critical parts of the code.

Networking

Message Batching

@ostinelli benchmarks message batching inside application code (as opposed to the TCP stack).

This is still a WIP.

About

Links to nuggets of erlang performance wisdom

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published