hashrocket / websocket-shootout

A comparison of websocket servers in multiple languages and frameworks
MIT License
429 stars 76 forks source link

C++ not compiled with optimizations? #19

Closed steveklabnik closed 8 years ago

steveklabnik commented 8 years ago

https://github.com/hashrocket/websocket-shootout/blob/master/Makefile#L19

Seems to be missing -O2 or -O3.

jackc commented 8 years ago

I got a crash with -O3 so I dropped back to -O2. -O2 didn't measurably improve performance, but still should be done for a benchmark I suppose.