问题标签 [scaling]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
181 浏览

python - 多个数据中心

我发现缺乏有关处理多个数据中心的信息。有哪些工具和技术可用于利用多个数据中心?一个要求是数据库必须非常快速地保持一致。

0 投票
1 回答
181 浏览

windows - wmic 如何在命令提示符窗口上启用水平缩放

打开命令提示符窗口时。我发现黑色固定大小的窗口只能在垂直方向缩放,但是当我输入wmic命令时,它似乎也可以使用水平缩放。我只是怀疑像这样的wmic强制命令提示符窗口是什么方法。能解释一下吗?

0 投票
1 回答
130 浏览

scaling - 需要帮助在 o3d 中缩放

我一直很难在 o3d 上找到很多文档(不足为奇)。有谁知道如何在 o3d 中缩放我的 x?

0 投票
3 回答
183 浏览

c++ - Performance problems when scaling MSVC 2005's operator<< accross threads

When looking at some of our logging I've noticed in the profiler that we were spending a lot of time in the operator<< formatting ints and such. It looks like there is a shared lock that is used whenever ostream::operator<< is called when formatting an int(and presumably doubles). Upon further investigation I've narrowed it down to this example:

Loop1 that uses ostringstream to do the formatting:

Loop2 that uses the same ostringstream to do everything but the int format, that is done with itoa:

For my test I ran each loop a number of times with 1, 2, 3 and 4 threads (I have a 4 core machine). The number of trials is constant. Here is the output:

As you can see, the performance when using ostringstream is abysmal. It gets 30 times worse when adding more threads whereas the itoa gets about 2 times faster.

One idea is to use _configthreadlocale(_ENABLE_PER_THREAD_LOCALE) as recommended by M$ in this article. That doesn't seem to help me. Here's another user who seem to be having a similar issue.

We need to be able to format ints in several threads running in parallel for our application. Given this issue we either need to figure out how to make this work or find another formatting solution. I may code up a simple class with operator<< overloaded for the integral and floating types and then have a templated version that just calls operator<< on the underlying stream. A bit ugly, but I think I can make it work, though maybe not for user defined operator<<(ostream&,T) because it's not an ostream.

I should also make clear that this is being built with Microsoft Visual Studio 2005. And I believe this limitation comes from their implementation of the standard library.

0 投票
1 回答
749 浏览

jquery - jquery ui 没有正确缩放文本!

我正在尝试使用 jquery ui 来缩放我拖动的 div,以便更容易地查看其背后的内容,但其中的任何文本都在奇怪地缩放。文本本身变小了,但它周围似乎有一堆填充物并且现在是浮动的。文本超出了 div 的底部,即使它应该被 div 正确包含。我在文本行周围放置了一个红色边框,边框与原始文本的大小相同。我真的不知道该怎么做才能让它工作......

HTML:

CSS:

jQuery:

0 投票
2 回答
426 浏览

flash - FLV 在没有我要求的情况下缩小到 320 x 240

我只是以正常方式播放视频文件:

我的 flv 文件实际上是 600x678,但在舞台上按比例缩小显示,跟踪宽度和高度我得到 320x240。我不会在任何地方设置它。为什么越来越缩水?

0 投票
5 回答
29689 浏览

algorithm - 如何将一个矩形缩放到另一个矩形内可能的最大尺寸?

我有一个源矩形和一个目标矩形。我需要找到源可以缩放到的最大比例,同时适合目标矩形并保持其原始纵横比

谷歌找到了一种方法,但我不确定它是否适用于所有情况。这是我自制的解决方案:

  • 计算每个矩形的高度/宽度。这给出了对角线的斜率msrcmdest
  • 如果msrc < mdst,缩放源宽度以适应目标宽度(并按相同比例缩放高度)
  • 否则,缩放源高度以适应目标高度(并按相同比例缩放宽度)

寻找其他可能的解决方案来解决这个问题。我什至不确定我的算法是否适用于所有情况!

0 投票
4 回答
231 浏览

php - 测试代码如何扩展

我目前正在处理一些 Ajax 繁重的代码,我想知道随着越来越多的用户(希望)开始使用我的 Web 应用程序,我的服务器将如何扩展。它目前仅在我的内部测试服务器上,我想知道如何模拟几十或几千个用户,以便我可以看到它如何处理更重的负载。它是用 PHP/MySQL 编写的,我真的不想找到数百台计算机来手动设置和测试 :) 在此先感谢,非常感谢任何建议或指导。

0 投票
2 回答
1216 浏览

silverlight - Silverlight - 多边形缩放和裁剪

我有一个画布,其中添加了数千个多边形。

我希望能够放大(我正在通过 ScaleTransform.

但是,我也一直在尝试使用 Canvas.Clip 来仅绘制 Canvas 的一部分,但是一旦更改 ScaleTransform 值,剪辑就会停止工作...

在我的代码隐藏中,

我在做任何明显错误的事情吗?

0 投票
1 回答
2861 浏览

asp.net - 如何确定 ASP.NET 缓存的字节大小?

我正在积极开发使用服务器端缓存的 ASP.NET Web 应用程序,我试图了解如何在一些规模测试期间监控此缓存的大小。缓存存储各种大小的 XML 文档,其中一些是数兆字节。

System.Web.Caching命名空间的System.Web.Caching.Cache对象上,我看到了各种属性,包括Count,它获取“存储在缓存中的项目数”和EffectivePrivateBytesLimit,它获取“可用于缓存。” 没有什么能告诉我缓存的大小(以字节为单位)。

在“.NET Framework 应用程序的缓存体系结构指南”指南的“了解缓存技术”部分中,有一个“管理缓存对象”部分,其中包含一个表(表 2.2:用于监视缓存的应用程序性能计数器),其中列出了一组应用程序性能计数器,但我没有看到任何给我当前缓存大小的信息。

找到此缓存大小的好方法是什么?我是否必须在缓存上设置字节限制并查看其中一个周转率?我是否以错误的方式思考这个问题?如何确定 ASP.Net 缓存的总大小的答案真的是最好的方法吗?