Kenichi Nakamura

Results 32 comments of Kenichi Nakamura

that is cool. currently, through regex and mustermann, you could probably have one route block respond to mutliple paths, but not multiple verbs like that. i think this would be...

hi @rmc3 - sorry for not getting back to you sooner. you're correct, for the most part. "blocking" IO is supposed to "pause" and allow other tasks to run, but...

@rmc3 Here is an example. Some things to note are: - for computation, use another actor/thread - for IO, use celluloid-io evented socket on the reactor (`task` builder) ``` ruby...

thanks. yes, it is joined to `root` - which is lazily inited to `app_file/..`. see the following lines: https://github.com/kenichi/angelo/blob/master/lib/angelo/base.rb#L54 https://github.com/kenichi/angelo/blob/master/lib/angelo/base.rb#L142-L144 https://github.com/kenichi/angelo/blob/master/lib/angelo/base.rb#L111-L119 you can set it relatively, using `../..` etc. if...

@nash8114 hello, thanks for using angelo and sorry for the late reply. i hope to have time to look at your work this week.

some very basic initial profiling does show a drop off in handled requests per second on this branch. perhaps a more opt-in approach might be best.

Hi @tenyo - many of the upstream dependencies are no longer maintained, specifically the entire celluloid ecosystem: reel, celluloid:io, celluloid... which angelo depends on for base functionality. That said, I...

I did some more testing, but haven't been able to nail down what is happening. Something fundamental in the websocket negotiation in Reel (upstream dep) is broken for me, even...

@Adam-Stomski I looked through reel, sinatra, and rack code... Looks like rack handles this, merging a tempfile into the params in this case. I'm now confused as to whether this...

@tommay I thought I had looked at it quite a bit, but realized that I completely missed the `Reel::StreamResponse` and `Reel::EventStream` classes when added SSE and chunked support to Angelo....