Thomas Coopman

Results 83 comments of Thomas Coopman

I replaced Map.Make(String) and got following improvements new size 29624 from 32313 without belt. This looks like a nice improvement! (The output of these numbers is this pipeline: rollup >...

@OvermindDL1 is this something you're interested into completing? If not I'll close it.

If the starter kit is not sufficient for anyone, feel free to create an issue or pull request to improve it.

I have some examples with phoenix websockets that I could clean up a bit. What are we looking for exactly? On Wed, 1 Nov 2017, 15:40 OvermindDL1, wrote: > Also,...

> On the side, I am a bit suspicious of using errors to detect unique constraint or other violations as a normal control flow. Isn't that actually the accepted way...

A while back, I've experimented with an implementation of channels for Dream: https://github.com/tcoopman/dream-channels It's just an experiment and not ready at all, but it should be possible to build something...

I haven't looked at the implementation/API, just following the discussion, so I might be off. From my experience having default transactions is not something a lot of other frameworks do...

`Multi` is indeed how you would mostly use transactions in `Ecto`, so it's meant to be run in a transaction. > As far as I can tell, the transaction function...

Thanks, this is how I currently solve it: ```ocaml Dream.get "/" (Dream.from_filesystem "dist" "index.html"); ``` But having something in `Dream.static` might be nice?

> While we are on this subject. I think most static servers I've used have the ability to list files in the current folder (if index.html available) Do you mean...