digitalmars.D.announce - vibe.d 0.7.17 released
- =?ISO-8859-15?Q?S=F6nke_Ludwig?= (16/16) Sep 09 2013 Major changes:
- Volcz (3/23) Sep 09 2013 Cool! Great work!
- =?UTF-8?B?U8O2bmtlIEx1ZHdpZw==?= (11/13) Sep 09 2013 I know of these three template engines in addition to included Diet syst...
- Craig Dillabaugh (2/22) Sep 09 2013 Thanks for all your work on this. A great product.
- Daniel Davidson (7/27) Sep 10 2013 Thanks for the great work!
- Dicebot (16/22) Sep 10 2013 I think I can safely answer this question in absence of Sonke as
- Daniel Davidson (18/33) Sep 10 2013 In that thread Sonke said:
- Dicebot (14/31) Sep 10 2013 Well, we don't know. Now one has been ever benchmarking this.
- Andrei Alexandrescu (5/5) Sep 10 2013 On 9/9/13 1:03 AM, Sönke Ludwig wrote:
Major changes: - Compiles on DMD 2.063.2 and DMD HEAD - Deprecates/removes a lot of non-conforming parts of the API (resp. naming convention) - New TaskLocal!T for more efficient and type safe task local storage - New TaskPipe class for stream based inter-fiber communication (can be used to connect classic blocking I/O with asynchronous I/O using a separate thread) - New SyslogLogger class by Jens Mueller - A bunch of smaller fixes/additions Full change log: http://vibed.org/blog/posts/vibe-release-0.7.17 Download: http://vibed.org/download GitHub: https://github.com/rejectedsoftware/vibe.d
Sep 09 2013
On Monday, 9 September 2013 at 08:03:46 UTC, Sönke Ludwig wrote:Major changes: - Compiles on DMD 2.063.2 and DMD HEAD - Deprecates/removes a lot of non-conforming parts of the API (resp. naming convention) - New TaskLocal!T for more efficient and type safe task local storage - New TaskPipe class for stream based inter-fiber communication (can be used to connect classic blocking I/O with asynchronous I/O using a separate thread) - New SyslogLogger class by Jens Mueller - A bunch of smaller fixes/additions Full change log: http://vibed.org/blog/posts/vibe-release-0.7.17 Download: http://vibed.org/download GitHub: https://github.com/rejectedsoftware/vibe.dCool! Great work! Any progress on allowing other templating engines?
Sep 09 2013
Am 09.09.2013 12:35, schrieb Volcz:Cool! Great work! Any progress on allowing other templating engines?I know of these three template engines in addition to included Diet system: - https://github.com/repeatedly/mustache-d - https://github.com/carlor/embd - https://github.com/dymk/templ-d All three can be used with vibe.d without issues. AFAICS embd and mutache-d (using OutputStream's output range interface) can be used without preallocating the output buffer. templ-d seems to always build a string in memory and as such is also trivially usable. Disclaimer: Although I wanted to do that since a long time, I still didn't practically test any of these engines.
Sep 09 2013
On Monday, 9 September 2013 at 08:03:46 UTC, Sönke Ludwig wrote:Major changes: - Compiles on DMD 2.063.2 and DMD HEAD - Deprecates/removes a lot of non-conforming parts of the API (resp. naming convention) - New TaskLocal!T for more efficient and type safe task local storage - New TaskPipe class for stream based inter-fiber communication (can be used to connect classic blocking I/O with asynchronous I/O using a separate thread) - New SyslogLogger class by Jens Mueller - A bunch of smaller fixes/additions Full change log: http://vibed.org/blog/posts/vibe-release-0.7.17 Download: http://vibed.org/download GitHub: https://github.com/rejectedsoftware/vibe.dThanks for all your work on this. A great product.
Sep 09 2013
On Monday, 9 September 2013 at 08:03:46 UTC, Sönke Ludwig wrote:Major changes: - Compiles on DMD 2.063.2 and DMD HEAD - Deprecates/removes a lot of non-conforming parts of the API (resp. naming convention) - New TaskLocal!T for more efficient and type safe task local storage - New TaskPipe class for stream based inter-fiber communication (can be used to connect classic blocking I/O with asynchronous I/O using a separate thread) - New SyslogLogger class by Jens Mueller - A bunch of smaller fixes/additions Full change log: http://vibed.org/blog/posts/vibe-release-0.7.17 Download: http://vibed.org/download GitHub: https://github.com/rejectedsoftware/vibe.dThanks for the great work! Do you think you are closer to feeling comfortable including in some benchmark sites (e.g. maybe add to http://www.techempower.com/benchmarks/#section=data-r5)? Thanks Dan
Sep 10 2013
On Tuesday, 10 September 2013 at 17:13:09 UTC, Daniel Davidson wrote:Thanks for the great work! Do you think you are closer to feeling comfortable including in some benchmark sites (e.g. maybe add to http://www.techempower.com/benchmarks/#section=data-r5)? Thanks DanI think I can safely answer this question in absence of Sonke as someone subscribed to vibe.d commit log :) It was asked and answered: forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/1670 - not much has changed since then. Basically, almost all popular benchmarks tends to focus on speed of utility modules, not speed of HTTP server / application router itself. That is something that has never been tested or put serious efforts into. Area where vibe.d truly shines performance-wise is core request handling framework and I am not aware of any public benchmark game in that domain. Now, if someone takes the time to run those tests manually and tell how bad situation really is - that stuff would have been really interesting to learn :)
Sep 10 2013
On Tuesday, 10 September 2013 at 17:37:21 UTC, Dicebot wrote:I think I can safely answer this question in absence of Sonke as someone subscribed to vibe.d commit log :)ThanksIt was asked and answered: forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/1670 - not much has changed since then. Basically, almost all popular benchmarks tends to focus on speed of utility modules, not speed of HTTP server / application router itself. That is something that has never been tested or put serious efforts into.In that thread Sonke said: "Agreed, I'd say we should start to prepare the benchmark cases and see how they actually compare against the others". I can understand reservations about not wanting to publish benchmarks too early before some chance at optimization. OTOH, if it is "utility modules" that distort the numbers then maybe they need attention and data is the best way to draw it. And, just maybe, you and Sonke are too pessimistic? For example, shouldn't Json serialization be a win for D with its compile time approach?Area where vibe.d truly shines performance-wise is core request handling framework and I am not aware of any public benchmark game in that domain.I bet you are correct. But then, how can you know if there is no public benchmark game in that domain :-) Maybe the best approach is to find a way to work more sophisticated tests into the benchmark that show where vibe/D shines. Without benchmarks it is all guesswork... but I'll bet the compile time diet templates shine. Other guesses?Now, if someone takes the time to run those tests manually and tell how bad situation really is - that stuff would have been really interesting to learn :)Agreed!
Sep 10 2013
On Tuesday, 10 September 2013 at 18:10:40 UTC, Daniel Davidson wrote:I can understand reservations about not wanting to publish benchmarks too early before some chance at optimization. OTOH, if it is "utility modules" that distort the numbers then maybe they need attention and data is the best way to draw it. And, just maybe, you and Sonke are too pessimistic? For example, shouldn't Json serialization be a win for D with its compile time approach?Well, we don't know. Now one has been ever benchmarking this. Ever. Someone needs to step up and provide the data. I will do it eventually, but that will happen later rather than sooner.I've done some testing on my own ;) https://github.com/Dicebot/web-performance-tests - unfortunately, I was not able to get meaningful results for high concurrency cases because of h/w limits generic crappy laptop network cards have (should probably delete existing ones as they are mostly useless), but it provides all the tools for one to try and see :PArea where vibe.d truly shines performance-wise is core request handling framework and I am not aware of any public benchmark game in that domain.I bet you are correct. But then, how can you know if there is no public benchmark game in that domain :-)Maybe the best approach is to find a way to work more sophisticated tests into the benchmark that show where vibe/D shines. Without benchmarks it is all guesswork... but I'll bet the compile time diet templates shine. Other guesses?There is always an option to create your own benchmarking game :P All you need is production-grade networking hardware and pair of PC's (with client being considerably more powerful than server).
Sep 10 2013
On 9/9/13 1:03 AM, Sönke Ludwig wrote: [snip] http://www.reddit.com/r/programming/comments/1m4eon/vibed_web_application_toolkit_in_d_0717_has_been/ VOTE UP!!! Andrei
Sep 10 2013