本文介绍了语言明智的表现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好

有人可以帮助我明确语言(C#Vs nodejs vs python)Azure功能的性能,类似于不同语言的AWS Lambda链接

Can someone help me with language wise(C#Vs nodejs vs python) performance for Azure functions similar to AWS Lambda link here for different languages

https://read.acloud.guru/comparing-aws-lambda-performance-when-using-node-js-java-c-or -python-281bef2c740f

推荐答案

如何支持其他语言? -

主机/运行时是用C#编写的,除了C#,其他语言作为单独的进程运行,通过gRPC进行通信。

How other languages are supported? - Language Extensibility
The host/runtime is written in C# so except C#, other languages are run as separate processes which communicate via gRPC.

所以,我希望,C#是最快的,然后接下来是其他语言。

So, I would expect, C# to be the fastest and then the other languages would come next.

话虽如此,因为这些都在同一个实例(基本上是VM)中运行并使用gRPC进行通信,我真的不希望有大量吞吐量但可能会有一些。

That being said, since these all run in the same instance (basically a VM) and use gRPC for communication, I wouldn't really expect a huge throughput drop but there might be some.

此外,v1和v2完全不同,结果也不同。

Also, v1 and v2 are completely different and will have different results.


这篇关于语言明智的表现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 23:37