pedestal

Ryan Tate 2025-10-31T22:48:00.362579Z

Hi, is there any advantage — in production — to setting :join? to true in the service map? For example, when deploying via a jar? Thanks for any thoughts, I realize this probably gets a little beyond the scope of pedestal into how threads and services are managed 😅 (I don’t know if it matters but I’m planning to also have an nrepl running, it gets launched just before pedestal connector/start!)

ghaskins 2025-11-08T12:45:00.105579Z

I don’t think there is any advantage: it’s just a deployment model choice between background or foreground execution.

ghaskins 2025-11-08T12:46:04.994349Z

For example, if you have a super simple app and you want to block your main function, vs if you are starting a web service along with a bunch of other things as part of a component/integrant managed service

Ryan Tate 2025-11-09T03:50:20.402279Z

OK thanks! Just making sure.