DEV Community

Discussion on: Welcome to Fiber — an Express.js styled web framework written in Go with ️

Collapse
 
davidmz profile image
Давид Мзареулян

Does prefork mean that workers are executed in different processes (not goroutines) and cannot communicate or share memory with each other?

Thread Thread
 
fenny profile image
Fenny • Edited

This is correct, preforking is for specific use cases. If you work with an external database it should be no problem, because you can pool connections. You can see a good result here: techempower.com/benchmarks/#sectio...

Some comments have been hidden by the post's author - find out more