3 thoughts on “A Basic Full Text Search Server in Erlang”
Thanks for a great article!
I think, you can use GProc library https://github.com/uwiger/gproc instead of `list_to_atom(ServerName)` and `supervisor:start_child(keyword_sup, [ServerProcessName])`. Massive atom creation (one atom for every keyword) is not a good idea.
Thanks for a great article!
I think, you can use GProc library https://github.com/uwiger/gproc instead of `list_to_atom(ServerName)` and `supervisor:start_child(keyword_sup, [ServerProcessName])`. Massive atom creation (one atom for every keyword) is not a good idea.
Hi Sergey,
Good tips, thx! I’ll take a look at GProc.
Very cool.