Tag: 配额

Google App Engine帐户可以使用多lessMemcache内存?

Google App Engine有一些关于Memcache限制的信息: http://code.google.com/appengine/docs/quotas.html#Memcache http://code.google.com/appengine/docs/python/memcache/overview.html#Quotas_and_Limits 但是,没有指定单个应用程序的RAM /内存存储的总大小。 众所周知,不允许超过1MB的对象。 你有信息吗?

读取XML数据时,超过了最大string内容长度限额(8192)

我试图传递一个大的string(24,000到50,000个字符)到一个自托pipe的TCP WCF服务。 我已经把maxStringContentLength(无处不在)设置为22008192。 我读了一些地方,我需要将bindingConfiguration更改为“LargeBuffer”或“LongFields”,但是当我这样做: <endpoint address="" binding="netTcpBinding" bindingConfiguration="LongFields" contract="ExStreamWCF.IService1"> 或这个: <endpoint address="" binding="netTcpBinding" bindingConfiguration="LargeBuffer" contract="ExStreamWCF.IService1"> 我的服务无法启动。 我真的需要这个错误消失。 有任何想法吗? 谢谢, 贾森 PS-config文件从服务器上的tcp服务: <system.serviceModel> <services> <service behaviorConfiguration="ExStreamWCF.Service1Behavior" name="ExStreamWCF.Service1"> <endpoint address="" binding="netTcpBinding" bindingConfiguration="" contract="ExStreamWCF.IService1"> <identity> <dns value="Devexstream-2.anchorgeneral.local" /> <!–<dns value="vmwin2k3sta-tn2" />–> </identity> </endpoint> <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" contract="IMetadataExchange" /> <host> <baseAddresses> <add baseAddress="net.tcp://Devexstream-2:8080/Service" /> <!–<add baseAddress="net.tcp://vmwin2k3sta-tn2:8080/Service" />–> </baseAddresses> […]