(which in the case of Wordpress can't be that hard)
WordPress on .NET
11–20 of 174 posts
Re: WordPress on .NET
#12Earlier quoted context omitted.
What's the benefit over running a standard PHP-Interpreter? Haven't used PHP or WordPress since 2010 so I might have missed something but to me this looks more like a tech demo then something one would use in a production environment.
I remember from the PHP on Java that there were huge performance benefits. So large PHP hosts should see benefits.
Re: WordPress on .NET
#13This seems to be built on an open-souce PHP->CLR compiler called Peachpie[1]. Interesting project. I don't have any PHP codebase that I still maintain but looking forward to trying it with some scripts I've written back in the days. I wonder if it would be faster than PHP 7 - which is already very fast (ok, just found these: http://www.peachpie.io/benchmarks ). [1]: http://www.peachpie.io/ [edit] If the author is loo…
Re: WordPress on .NET
#14This is very clever, what is the performance like compared to PHP?
Re: WordPress on .NET
#15They choose to heavily modify the C#/VB compiler (Roslyn) to handle php syntax. Microsoft should be investing time into helping them succeed, it would be great to see the Roslyn compiler platform become more broadly used.
Re: WordPress on .NET
#16This is very clever, what is the performance like compared to PHP?
From their benchmarks page (which looks remarkable) http://www.peachpie.io/benchmarks
Next step is to get Symfony, Laraval, et al to run on this.
Re: WordPress on .NET
#17Earlier quoted context omitted.
What's the benefit over running a standard PHP-Interpreter? Haven't used PHP or WordPress since 2010 so I might have missed something but to me this looks more like a tech demo then something one would use in a production environment.
I remember from the PHP on Java that there were huge performance benefits. So large PHP hosts should see benefits.
Re: WordPress on .NET
#18Running PHP and indeed WordPress on the .NET CLR seems like a great way to eliminate a whole tranche of bugs/vulnerabilities in one swoop. Respect.
Re: WordPress on .NET
#19Well, considering the fact that PHP post v4 is trying to become Java, it made sense that at some point it would be able to run on the JVM or its step-cousin CLR. By the way, does anyone know of a similar project where the JVM is targeted instead?
Re: WordPress on .NET
#20This is very clever, what is the performance like compared to PHP?
From their benchmarks page (which looks remarkable) http://www.peachpie.io/benchmarks
That said, I was really impressed by the improvement on require performance. The requests/sec also seem to have big gains.
I also wonder what security improvements other are expecting from this? Isn't unsecure code unsecure regardless of language?