Hacker News new | ask | show | jobs
by evilmonkey19 156 days ago
Just out of curiosity, why did you use Go for bgpipe and Python?
1 comments

One reason is there already was exabgp, written in Python, which in my experience is slow and resource hungry. Golang is much faster, easily portable, and produces static binaries (easy to deploy).

Another thing is bgpipe speaks JSON to background (or even remote) packet processors, so basically you can use whatever language you want with it to drive your BGP routers.