Viewing profile — blatyo
blatyo
HN member- Joined
- Sat, Nov 28, 2009, 10:41 PM UTC
- HN karma
- 24
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About blatyo
No profile information was provided.
Recent public activity
-
comment
Comment #20856864
This isn't a complete answer to you're question, but one note. They aren't building an interpreter in wasm. They are compiling elixir to native wasm. Elixir code wouldn't be shippe…
-
comment
Comment #17347451
One thing that is nice about the way sublime does it is that you can search the search results. Since it shows the found search items contextualized, it can be useful to search the…
-
comment
Comment #16526134
The solution for this in Elixir is to use GenStage actors, which provides backpressure by allowing downstream processes to ask for data to process. Check out this video which descr…
-
comment
Comment #14888224
I'm not sure if it's a recent feature, but I was unaware of it until recently. However, you'd still need an app to sign the upload URL. Otherwise, you'd have to expose the AWS secr…
-
comment
Comment #14888203
s3 requires a signature as well. Without requiring a signature, anyone could upload anything to your s3 account. With a signature, you choose when and where people can put their fi…
-
comment
Comment #14853014
I believe what Overmind meant was that a single request in another language can probably beat Elixir in performance, but Elixirs ability to handle a large amount of requests concur…
-
comment
Comment #14849332
One note on database time. If you're loading multiple related records, Ecto is able to do some of those requests concurrently. For example, if you get a user and their posts and co…
-
comment
Comment #14848785
Here's a screenshot of mean times for one of my company's app. http://take.ms/qGVOA The one at the top is proxying the request to a java app which happens to be a little slow.
-
comment
Comment #14847100
You mentioned the phoenix team is working on monitoring. Can you point me to where you heard that or any work being done on it?
-
comment
Comment #14653481
https://www.youtube.com/watch?v=XMjrI3pFsOA
-
comment
Comment #5216520
I assumed people were running multiple rails processes on their dynos. http://michaelvanrooijen.com/articles/2011/06/01-more-concur...