Reputation: 56199
I am very new to Erlang and I need to create websocket server connected with postgre.
I googled and found yaws
and mochiweb
and examples in book Programming Erlang by Joe Armstrong
.
Can anyone with more experience direct for better solution what to use ?
Server is simple and should answer on maybe 15 different JSON
messages
Upvotes: 0
Views: 139
Reputation: 11626
websockets are not super-straightforward to implement.
I've used Cowboy on several occasions and find it easy, fast and simple to embed in my applications.
Upvotes: 2