active questions tagged scaling - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:57:46Z http://stackoverflow.com/feeds/tag/scaling http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1771888/as3-proportionally-scaling-external-image 0 AS3 proportionally scaling external image DeaconDesperado 2009-11-20T17:05:18Z 2009-12-04T05:40:37Z <p>Currently I am using a for loop to dynamically load XML images and place them in a grid as thumbnails. I have the arrangement set and all the data is loading smoothly, but now I need to make the images scale to small 100px x 100px thumbs in small container movieclips. My code is as follows.</p> <pre><code> import gs.*; import gs.easing.*; var bttnHeight:Number = 20; var select:Number = 0; var xmlLoader:URLLoader = new URLLoader(); xmlLoader.addEventListener(Event.COMPLETE, showXML); xmlLoader.load(new URLRequest("testxml.xml")); var list_mc:Array = new Array(); function showXML(e:Event):void { XML.ignoreWhitespace = true; var nodes:XML = new XML(e.target.data); var gallcount = nodes.gallery.length(); var list_mc = new listitem(); //Generate menu to select gallery function populateMenu():void { var spacing:Number = 0; for (var i=0; i&lt;gallcount; i++) { list_mc[i] = new listitem(); list_mc[i].name = "li" + i; list_mc[i].y = i*bttnHeight; list_mc[i].gallname.text = nodes.gallery[i].attributes(); menu_mc.addChild(list_mc[i]); list_mc[i].addEventListener(MouseEvent.ROLL_OVER, rollover); list_mc[i].addEventListener(MouseEvent.ROLL_OUT, rollout); list_mc[i].buttonMode = true; list_mc[i].mouseChildren = false; } menu_mc.mask = mask_mc; } //list_mc.mask(mask_mc); var boundryWidth = mask_mc.width; var boundryHeight = mask_mc.height; var diff:Number = 0; var destY:Number = 0; var ratio:Number = 0; var buffer:Number = bttnHeight*2; function findDest(e:MouseEvent):void { if (mouseX&gt;0 &amp;&amp; mouseX&lt;(boundryWidth)) { if (mouseY &gt;0 &amp;&amp; mouseY&lt;(boundryHeight)) { ratio = mouseY/boundryHeight; diff = menu_mc.height-boundryHeight+buffer; destY = Math.floor(-ratio*diff)+buffer/2; } } } var tween:Number = 5; //This creats the scroll easing function moveMenu() { if (menu_mc.height&gt;boundryHeight) { menu_mc.y += (destY-menu_mc.y)/tween; if (menu_mc.y&gt;0) { menu_mc.y = 0; } else if (menu_mc.y&lt;(boundryHeight-menu_mc.height)) { menu_mc.y = boundryHeight-menu_mc.height; } } } function rollover(e:Event):void { TweenLite.to(e.currentTarget.li_bg, .4, {tint:0x334499}); } function rollout(e:Event):void { TweenLite.to(e.currentTarget.li_bg, .4, {removeTint:true}); } stage.addEventListener(MouseEvent.MOUSE_MOVE, findDest); stage.addEventListener(Event.ENTER_FRAME, moveMenu); populateMenu(); select = 0; //Generate thumbnails function genThumb():void { var photos = nodes.gallery[select].photo; var thumbframe:Array = new Array(); var row = 0; var column = 0; var loaderArray:Array = new Array(); for (var i=0; i&lt;photos.length(); i++) { thumbframe[i] = new Sprite; thumbframe[i].graphics.beginFill(0x0000FF); thumbframe[i].graphics.drawRect(0,0,100,100); thumbframe[i].graphics.endFill(); thumbframe[i].y = row; thumbframe[i].x = column; loaderArray[i] = new Loader(); loaderArray[i].load(new URLRequest(photos[i].text())); trace(loaderArray[i].height); var index = i+1; container_mc.addChild(thumbframe[i]); if (index%5 == 0) { row=row+120; column = 0; } else { column=column+120; } thumbframe[i].addChild(loaderArray[i]); } } genThumb(); } </code></pre> <p>Both the loaders and the containers are in respective arrays. The images load correctly, but I am at a loss for how to scale them (ultimately I'd like to integrate a tween to animate as they load as well if possible.)</p> <p>Thanks in advance for any aid!</p> http://stackoverflow.com/questions/1805317/performance-tuning-cakephp-application 0 Performance tuning CakePHP application Darth 2009-11-26T19:29:33Z 2009-11-26T21:03:02Z <p>I just got this quite large CakePHP app (about 20k lines of code), which isn't very clean and there is no documentation at all. The app is running in production, but it has really major problems with performance. </p> <p>Server is Quad core with 8GB RAM, but the app can serve only about 3-4 requests/s, which is very very bad. Each request takes about 20-30% of all four CPUs. </p> <p>When I try even little load test like <code>ab -n 100 -c 10 ...</code>, it goes up to 7000ms average response. However, I never made it over 800MB RAM, so there is at least 6GB free RAM for some tweaking.</p> <p>The problem is, that I haven't been yet able to create working development instance, so I have to tune it in production ...</p> <p>What do you recommend for <em>easy</em> boosting the performance, without too much digging into source code?</p> http://stackoverflow.com/questions/1702954/which-would-you-prefer-svg-html5-or-regend-png-for-graphs-charts 2 Which would you prefer? SVG, HTML5 or regen'd-PNG for graphs & charts? Xepoch 2009-11-09T18:47:31Z 2009-11-19T09:21:10Z <p>I'm developing a new site that graphs some operational metrics. As such about a dozen charts/graphs will be displayed on the site. I want to be able to have them dynamically scale down (within reason) based upon the size of the browser.</p> <p>I'm debating the pros/cons of generating these as one of these options:</p> <ol> <li><strong>SVG</strong>. Great for scaling but support may have limited support,</li> <li><strong>HTML5</strong>. Clearly a great choice for the future and for FF customers, IE?</li> <li><strong>PNG</strong>. This would require that I regenerate the PNG based upon the size of the DIV &amp;c.</li> </ol> <p>Which is the preferable option? I'm leaning towards PNG just for ubiquitous support, but would like to have client-side scaling. What is the best solution given the state of affairs of SVG and HTML5 canvas support in browsers?</p> http://stackoverflow.com/questions/1760348/using-ec2-load-balancing-with-existing-wordpress-blog 1 Using EC2 Load Balancing with Existing Wordpress Blog Zach Dunn 2009-11-19T01:26:57Z 2009-11-19T02:12:56Z <p>Hello,</p> <p>I currently have a virtual dedicated server through Media Temple that I use to run several high traffic Wordpress blogs. Both tend to receive sudden StumbleUpon traffic surges that (I'm assuming) cause the server CPU to run at 100% and slow down everything. I'm currently using WP-Super-Cache, S3, and CloudFront for most static files, but high traffic is still causing slowdown on the CPU.</p> <p>From what I'm reading, it seems like I might want to use EC2 to help the existing server when traffic spikes occur. Since I'm currently using the top tier of virtual dedicated servers on Media Temple, I'd like to avoid jumping to a dedicated server if possible. I get the sense that AWS might help boost the existing server's power. How would I go about doing this?</p> <p>I apologize if I'm using any of these terms incorrectly -- I'm relatively amateur when it comes to server administration. If this isn't the best way to improve performance, what is the recommended course of action?</p> http://stackoverflow.com/questions/1720307/high-traffic-highly-secure-web-api-what-language 0 High-traffic, Highly-secure web API, what language? emi1faber 2009-11-12T06:31:20Z 2009-11-12T11:00:24Z <p>If you were planning on building a high-traffic, very secure site what language would you use? </p> <p>For example, if you were planning on say building an authorize.net-scale site, that had to handle tons of credit card transactions via an API, what would you use building it from scratch? I would imagine that most sites handling similar traffic with similar security would use non open-source software (correct me if I'm wrong). What open source software would you use and why? Python, Ruby, Erlang, PHP, custom C/C++, or what? Also, would you use a traditional database, or does the <a href="http://en.wikipedia.org/wiki/NoSQL" rel="nofollow">NoSQL</a> route make more sense?</p> <p>Not trying to start a flame-war here, just wondering what the good people of Stack Overflow think on the subject...</p> <p>Update: As a bit of a clarification, this is entirely hypothetical. I fully understand the importance of knowing your language/platform, just looking for some opinions of strengths/weaknesses of a given language/framework and where (and why) one might be more suitable over another. As far as data goes, I'm thinking customer A bought items X, Y, and Z, from vendor B. So, pretty straightforward, until someone wants to know whether customer C also bought items X and Y or X and Z or Y and Z together in one purchase. So, from a data standpoint, I guess I'm looking at it from a business intelligence standpoint and wondering whether NoSQL has any advantages/disadvantages over a traditional SQL database.</p> http://stackoverflow.com/questions/1314235/need-help-scaling-in-o3d 0 Need help scaling in o3d Michael Minerva 2009-08-21T21:09:33Z 2009-11-11T15:36:41Z <p>I have been having trouble find much documentation on o3d (not too surprisingly). Does anyone know how to scale my x in o3d? </p> http://stackoverflow.com/questions/1706674/wpf-font-scaling 0 WPF font scaling Martin 2009-11-10T09:35:44Z 2009-11-10T12:27:10Z <p>I have a WPF application where the user interface should be scaled so that it should become larger if the windows is made larger. In one of the dialogs, I need to present a list of items to a user and the user should click one of them. The list will contain from 1 to around 15-20 items. I want the font size for each individual item to be as big as the font size for the other items in the list, but at the same time I want the font size to increase if the window is made larger.</p> <p>At the moment, my test code looks like below.</p> <pre><code>&lt;Window x:Class="WpfApplication4.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:controls="clr-namespace:WpfApplication4" Title="Window1" Height="480" Width="640"&gt; &lt;ScrollViewer&gt; &lt;Grid&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="30*" MinHeight="30"/&gt; &lt;RowDefinition Height="30*" MinHeight="30"/&gt; &lt;RowDefinition Height="30*" MinHeight="30"/&gt; &lt;/Grid.RowDefinitions&gt; &lt;Button Grid.Row="0" MaxHeight="100"&gt;&lt;Viewbox&gt;&lt;TextBlock&gt;T&lt;/TextBlock&gt;&lt;/Viewbox&gt;&lt;/Button&gt; &lt;Button Grid.Row="1" MaxHeight="100"&gt;&lt;Viewbox&gt;&lt;TextBlock&gt;Test&lt;/TextBlock&gt;&lt;/Viewbox&gt;&lt;/Button&gt; &lt;Button Grid.Row="2" MaxHeight="100"&gt;&lt;Viewbox&gt;&lt;TextBlock&gt;Test Longer String&lt;/TextBlock&gt;&lt;/Viewbox&gt;&lt;/Button&gt; &lt;/Grid&gt; &lt;/ScrollViewer&gt; &lt;/Window&gt; </code></pre> <p>If the application is started and the Window is made wide, everything looks OK. If the window width is decreased, the font size of the text <code>Test Longer String</code> is made smaller, but the font size for <code>T</code> and <code>Test</code> remains the same. I do understand why this happens - the viewbox will scale the contents to its maximum size. What I want to know is what method I should use to solve this problem.</p> <p>I don't want to give the controls specific font sizes because some people will run this on low-resolution screens such as 640x480 and others will use larger widescreens.</p> <p><strong>EDIT:</strong></p> <p>I've tried to modify my code to the following:</p> <pre><code>&lt;ScrollViewer&gt; &lt;Viewbox&gt; &lt;ItemsControl&gt; &lt;Button&gt;Test 2&lt;/Button&gt; &lt;Button&gt;Test 3&lt;/Button&gt; &lt;Button&gt;Test 4 afdsfdsa fds afdsaf&lt;/Button&gt; &lt;Button&gt;Test 5&lt;/Button&gt; &lt;Button&gt;Test 5&lt;/Button&gt; &lt;Button&gt;Test 5&lt;/Button&gt; &lt;Button&gt;Test 5&lt;/Button&gt; &lt;Button&gt;Test 5&lt;/Button&gt; &lt;/ItemsControl&gt; &lt;/Viewbox&gt; &lt;/ScrollViewer&gt; </code></pre> <p>But with the size of the button borders are increased as well, so on large screens, the button borders become a centimeter wide.</p> http://stackoverflow.com/questions/1597640/need-someone-to-verify-that-my-math-is-correct 1 Need someone to verify that my math is correct Maciek 2009-10-20T22:16:50Z 2009-11-08T13:25:43Z <p>I've been sitting with a pencil for the better part of the evening trying to recall how to implement a scalable viewport that can navigate a 2D area. It's been a while since I've first heard of it, but I think I've figured it out, I just need to verify.</p> <p>We have a 2D world with a "classic" cartesian coordinate system, x-axis points to the right, y-axis points to the top.</p> <p>In the world area we have a rectangular viewport defined by 2 points Pmin and Pmax, where : <strong>Pmin(xmin, ymin), Pmax(xmax, ymax)</strong>. Those points define viewport's size, location and scale</p> <p>In the world area we have a point P, where <strong>Pmin &lt; P(x, y) &lt; Pmax</strong>. (P is in the viewport rect)</p> <p>To display the whole damn thing, we've got a canvas (for example) that has an "altered" coordinate system, x-axis points right, <strong>y-axis points down</strong>. The canvas's size is <strong>MaxX and MaxY</strong>. The canvas's size is fixed.</p> <p>Now, in order to display point <strong>P'(x', y')</strong> in the canvas I need to calculate it's position like this :</p> <p><code>x' = (x - xmin) * Sx</code>, where <code>Sx = MaxX / (xmax - xmin)</code></p> <p><code>y' = MaxY - (y - ymin) * Sy</code>, where <code>Sy = MaxY / (ymax - ymin)</code></p> <p>*please note that y' coord is inverted due to canvas's coordinate system</p> <p>In other words : the above math should take care of displaying a point while taking scale and vieport's position into account. Am I correct ? If not, please prove me wrong.</p> http://stackoverflow.com/questions/1511879/overlaying-2d-paths-on-uiimage-without-scaling-artifacts 0 Overlaying 2D paths on UIImage without scaling artifacts tat0 2009-10-02T21:26:58Z 2009-10-30T00:06:36Z <p>I need to draw a path along the shape of an image in a way that it is always matching its position on the image independent of the image scale. Think of this like the hybrid view of Google Maps where streets names and roads are superimposed on top of the aerial pictures.</p> <p>Furthermore, this path will be drawn by the user's finger movements and I need to be able to retrieve the path keypoints on the image pixel coordinates. The user zooms-in in order to more precisely set the paths location. </p> <p>I manage to somehow make it work using this approach:</p> <p>-Create a custom UIView called CanvasView that handles touches interaction and delivers scaling, rotation, translation values to either the UIImageView or PathsView (see bellow) depending on a flag: deliverToImageOrPaths. </p> <p>-Create a UIImageView holding the base image. This is set as a children of CanvasView</p> <p>-Create a custom UIView called PathsView that keeps track of the 2D paths geometry and draws itself with a custom drawRect. This is set as children of the UIImageView.</p> <p>So hierarchy: CanvasView -> UIImageView ->PathsView</p> <p>In this way when deliverToImageOrPaths is YES, finger gestures transforms both the UIImageView and its child PathsView. When deliverToImageOrPaths is NO the gestures affect only the PathsView altering its geometry. So far so good.</p> <p>QUESTION: The problem I have is that when scaling the base UIImageView (via its .transform property) the PathsView is scaled with aliasing artifacts. drawRect is still being called on the PathsView but I guess it's performing the drawing using the original buffer size and then interpolating.</p> <p>How can I solve this issue? Are there better ways to implement these features?</p> <p>PS: I tried changing the PathsView layer class to CATiledLayer with levelsOfDetailBias 4 and levelsOfDetail 4. It solves the aliasing problem to some extent but it's unacceptable slow to render. </p> http://stackoverflow.com/questions/1610887/how-to-partition-mysql-across-multiple-servers 1 How to partition Mysql across MULTIPLE SERVERS? alex 2009-10-23T00:58:43Z 2009-10-25T19:12:04Z <p>I know that horizontal partitioning...you can create many tables.</p> <p>How can you do this with multiple servers? This will allow Mysql to scale.</p> <p>Create X tables on X servers?</p> <p>Does anyone care to explain, or have a good beginner's tutorial (step-by-step) that teaches you how to partition across multiple servers?</p> http://stackoverflow.com/questions/811554/problematic-data-patterns-performance-wise 0 Problematic data patterns, performance-wise Rik 2009-05-01T14:20:13Z 2009-10-20T18:00:02Z <p>Assertion: the performance of SQL databases degrades when the volume of data becomes very large (say, tens or hunderds of terabytes). This means certain patterns in database design which are reasonable for most small-to-medium sized databases break down when the database grows. For (a rather general) example, there is a trend that moves away from designing data models which are fully (or say, BCNF) normalized because the joins necessary would impact performance too heavily. See also <a href="http://stackoverflow.com/questions/173726/when-and-why-are-database-joins-expensive">this question</a></p> <p>My question is this: <strong>Do you know of any database patterns which, although reasonable in a typical database, break down (performance-wise) for huuuge databases</strong>, particularly SELECT-queries? Are there alternative strategies that accomplish the same (data-wise) without these performance issues? </p> http://stackoverflow.com/questions/1596066/flex-mxaxisrenderer-how-do-i-prevent-the-labels-from-being-scaled 0 Flex mx:axisrenderer How do I prevent the labels from being scaled. codeflayer 2009-10-20T17:14:00Z 2009-10-20T17:46:31Z <p>Hi there,</p> <p>I have a line chart that sometimes contains a number of data points. I have solved how to prevent the horizontal axis from displaying too many labels using custom label functions and data functions. My problem is forcing the AxisRenderer not to scale down my labels.</p> <p>I'm using the labelRotation property so the canDropLabels and canStagger properties are not an option.</p> <p>Thanks in advance for any replies.</p> http://stackoverflow.com/questions/1586549/when-to-start-performance-tuning-a-website 0 when to start performance tuning a website oo 2009-10-19T01:15:21Z 2009-10-19T02:05:16Z <p>i have a asp.net mvc website and the volume of traffic is increasing. I have the site pointing to a backend sql server 2008 database.</p> <p>at what point, do i need to figure out what the bottleneck of the system and look to review if i need to load balance machines, or change the way i am doing database connection management.</p> <p>are there specific tools and thresholds that are indicators that the current model isn't scalable or is hitting a breaking point (besides just observations of a slow site.</p> http://stackoverflow.com/questions/1583064/nstoolbaritem-image-scaling 0 NSToolbarItem image scaling PCWiz 2009-10-17T19:54:55Z 2009-10-17T20:46:57Z <p>Why is this happening:</p> <p><img src="http://img25.imageshack.us/img25/6415/screenshot20091017at149.png" /></p> <p>As you can see, in the "Allowed Toolbar Items" the image looks fine for the "PHP" toolbar item, and when its actually in the toolbar, it scales weirdly. </p> <p>Thanks</p> http://stackoverflow.com/questions/1509589/full-viewport-height-scaling-div-just-css-no-js-possible 0 Full viewport height scaling div just css no js... Possible? angryDev 2009-10-02T13:44:27Z 2009-10-02T18:18:29Z <p>Ok, I'm trying to get a div to scale and the height is always the height of the viewport. I'm going to link to my examples as it needs some explaining.</p> <p>www.madmediablitz.com/tv/precentdemo.html</p> <p>The link above is the closest I've come to a solution and I'm hoping that someone here will find it simple to fix. What I want to happen is the tv to always be the height of the viewport (to a degree, min-height:~400px; max-height:~700px;). The code that I used there is based on <a href="http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/" rel="nofollow">http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/</a>.</p> <p>www.madmediablitz.com/tv/precentdemo_alt.html</p> <p>This one is what I DON'T want to happen. IF you resize your window you will see it doesn't scale proportionally. </p> <p>I've been trying both of these for about 2 days now and I haven't been able to get it to work. I'm literally praying for help as I think, this isn't too complicated.</p> http://stackoverflow.com/questions/1499062/scalable-painting-of-a-qt-application 1 Scalable painting of a Qt application Scott 2009-09-30T15:56:57Z 2009-09-30T16:20:03Z <p>I'm writing a simulation of an embedded device's screen (which contains custom widgets on top of a main QWidget), and while the native size of the screen is 800x600, I want to be able to scale it up and down by dragging the window's corner. Without diddling with grid layouts and stretchers (which won't scale the fonts up/down), how do I accomplish this sort-of zoom? I think part of the solution might be to create a QTransform and somehow inject that into the QWidget for the entire application, or its QPaintDevice or QPaintEngine. I'd like to do this without putting QTransform in each custom widget, just the "main window" QWidget.</p> http://stackoverflow.com/questions/1138760/how-to-disable-scaling-on-images-loaded-in-flash-movie-as3 0 How to disable scaling on Images loaded in Flash Movie AS3 Nikesh 2009-07-16T16:26:41Z 2009-09-23T04:00:02Z <p>I have Flash, in which i load some images dynamically. </p> <p>But when I am viewing this flash on a large screen monitor, the flash is auto scaling (I can't disable stage auto scaling). And similarly size of images is also increasing. Here the problem arises, On large screen monitors the images are getting blur. </p> <p>How can I make it good on all size of monitors. </p> <p>All here i want is to disable scaling on images selectively. </p> http://stackoverflow.com/questions/559134/how-can-what-should-i-implement-a-database-that-scales-to-the-upper-tens-of-tho 5 (How can/What should) I implement a database that scales to the upper tens of thousands requests/second? feydr 2009-02-17T23:07:12Z 2009-09-22T22:41:59Z <p>By Upper tens of thousands requests/second I want to see 60,000 -> +90,000 requests/second.</p> <p>My Setup consists of the following:</p> <p>user ---> web app --> message queue --> parser --> database?</p> <p>I should mention that the parser currently can parse/stuff around 18750 records/second using COPY so we are limited on that end until we start adding more parsers -- this isn't a huge concern for me now.</p> <p>I have a system that requires the ability to bulk upload as fast as I can as many records as I can. This same system (or it can be different depending on how you would approach it) should be able to respond to analytical type queries such as this:</p> <pre> wonq = "select sum(amount) from actions where player = '@player' and " + "(type = 'award' or type = 'return') and hand = hand_num" lostq = "select sum(amount) from actions where player = 'player' and " + "type != 'award' and type != 'return' and hand = hand_num" </pre> <p>.....10-15 thousand times (PER USER) since they are keyed off to another table. Needless to say we paginate these results at 10/page for now.</p> <p>I've looked at the following: (assuming these are all on the same server)</p> <ul> <li><p>mysql (reg. run of the mill rdbms) -- was able to get into the 15-20 thousand requests/second range; under current conditions if we try to scale this out we need a seperate host/database everytime we need to scale -- this is not doable</p></li> <li><p>couchdb (document oriented db) -- didn't break 700 requests/second; I was really hoping this was going to save our ass -- not a chance!</p></li> <li><p>vertica (columnar oriented db) -- was hitting 60000 request/second, closed source, very pricey; this is still an option but I personally did not like it at all</p></li> <li><p>tokyocabinet (hash based db) -- is currently weighing in at 45,000 inserts/second and 66,000 selects/second; yesterday when I wrote this I was using a FFI based adapater that was performing at around 5555 requests/second; this is by-far THE fastest most awesome database I've seen yet!!</p></li> <li><p>terracotta -- (vm cluster) currently evaluating this along with jmaglev (can't wait until maglev itself comes out) -- this is THE SLOWEST!</p></li> </ul> <p>maybe I'm just approaching this problem wrong but I've ALWAYS heard that RDBMS were slow as all hell -- so where are these super fast systems that I've heard about?</p> <p><strong>Testing Conditions</strong>::</p> <p>Just so ppl know my specs on my dev box are:</p> <pre> dual 3.2ghz intel, 1 gig ram </pre> <p>Mysql mysql.cnf edits were:</p> <pre> key_buffer = 400M # was 16M innodb_log_file_size = 100M # non existent before innodb_buffer_pool_size = 200M # non existent before </pre> <p><strong>UPDATE</strong>::</p> <p>It turns out that terracotta might have a place in our application structure but it flat out WILL NOT be replacing our database anytime soon as it's speeds are terrible and it's heap utilization sucks.</p> <p>On the other hand, I was very happy to see that tokyocabinet's NON-FFI ruby library (meaning tyrant/cabinet) is super fast and right now that is first place.</p> http://stackoverflow.com/questions/638700/how-scaleable-really-is-a-web-services-based-architecture 1 How scaleable really is a web-services based architecture? cdeszaq 2009-03-12T13:51:18Z 2009-09-21T13:25:07Z <p>Whenever someone talks about a services-based architecture, they often mention scalability, often in the same breath. However, it seems that using services adds more overhead, rather than reducing it, since there is now a protocol, like SOAP or REST, involved. So, does a web services based architecture really add performance benefits as the number of users of, say, a web application, scales by perhaps an order of magnitude? Or are the scalability requirements simply offloaded onto the services, rather than the core application?</p> http://stackoverflow.com/questions/1451835/do-i-need-to-scale-a-picture-myself-before-printing 0 Do I need to scale a picture myself before printing? Liran Orevi 2009-09-20T19:49:29Z 2009-09-20T22:05:29Z <p>A simple question - If I want to print a picture so it best fits the page in C#, do I have to scale it to the dimensions of the page myself ? </p> <p>I've noticed the many good answers about <a href="http://stackoverflow.com/questions/249587/high-quality-image-scaling-c">how-to scale</a>, I just want to know If I need to scale myself, as the scaling isn't a part of an image processing, it's only for the sake of the printing.</p> <p>(a simple yes (if it's the answer) would do)</p> <p><em>Edit:</em> Currently I'm scaling using:</p> <pre><code>e.Graphics.DrawImage(my_image, destRect, srcRect, GraphicsUnit.Pixel); </code></pre> <p>Whereas destRect is a rectangle of the dimensions of the wanted output, I've done a simple algorithm to set this destRect to optimal sizes while preserving the original aspect ratio. (btw I'm not happy with this simple scaling, as it lacks in Image quality, will probably update to something fancier if I must).</p> <p>But I've wanted to know if there's some auto-scaling provided by the framework for printing purposes, I really don't want to re-invent this wheel..</p> http://stackoverflow.com/questions/1421764/one-massive-instance-of-an-app-or-many-medium-sized-ones 4 One massive instance of an app, or many medium-sized ones? Brian MacKay 2009-09-14T14:04:10Z 2009-09-18T19:57:22Z <p>A web application we wrote intended for one customer is going to be product-ized and sold to dozens of companies, and we will be doing the hosting.</p> <p>I could use some guidance about the pros and cons of rolling out a seperate instance for each customer versus going with a single (or very small number of) multi-tenant instances. </p> <p>At first, as we ramp up, I will <em>have</em> to roll out a seperate instance of the application for each new customer (they will come online one at a time) because it's the only immediate option. I imagine this won't scale very well as far as maintenance goes - rolling out changes will become very tedious and possibly error-prone once there are more than 4 or 5 instances out there. Unless we automate that somehow.</p> <p>Also, the single-instance philosophy seems like it might lead to a bunch of forks if people need customizations. And it would be nice to avoid that.</p> <p>So what has your experience been with this?</p> <p><strong>Bonus question #1:</strong> What's the performance difference between 10 SQL Servers with 2m records each versus one huge one with 20m? Let's say they are all in one table and we're mainly doing inserts and selects on single records. Sometimes the selects are on an indexed varchar(12) or date field.</p> <p><strong>Bonus Question #2:</strong> I imagine that to avoid forking, we would have to make the customizations configurable, or build a plug-in architecture. However, that might increase the cost of doing customizations, and I don't want to be one of those shops that takes a week to resize a textbox, <em>and</em> I don't want to over-invest in infrastructure. Any thoughts on that?</p> <p><strong>Scale Details</strong></p> <p>Each customer will have a decent amount of data -- up to a few million records.</p> <p>There will be a very small number of concurrent users, only a few per customer, plus a handful of internal reps on our end. </p> <p>It's unclear whether each customer will require customizations, but I would say some of them probably will, and maybe some of those changes will be things that other customers will not want to see. </p> http://stackoverflow.com/questions/1415268/how-to-determine-the-size-in-bytes-of-the-asp-net-cache 1 How to determine the size in bytes of the ASP.NET Cache? Kevin Hakanson 2009-09-12T14:32:22Z 2009-09-13T13:02:19Z <p>I'm in active development of an ASP.NET web application that is using server side caching and I'm trying to understand how I can monitor the size this cache during some scale testing. The cache stores XML documents of various sizes, some of which are multi-megabyte.</p> <p>On the <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.cache.aspx" rel="nofollow">System.Web.Caching.Cache</a> object of <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.aspx" rel="nofollow">System.Web.Caching</a> namespace I see various properties, including <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.cache.count.aspx" rel="nofollow">Count</a>, which gets "the number of items stored in the cache" and <a href="http://msdn.microsoft.com/en-us/library/system.web.caching.cache.effectiveprivatebyteslimit.aspx" rel="nofollow">EffectivePrivateBytesLimit</a>, which gets "the number of bytes available for the cache." Nothing tells me the size in bytes of the cache.</p> <p>In the <a href="http://msdn.microsoft.com/en-us/library/ms978500.aspx" rel="nofollow">Understanding Caching Technologies</a> section of the "Caching Architecture Guide for .NET Framework Applications" guide, there is a "Managing the Cache Object" section with a table (Table 2.2: Application performance counters for monitoring a cache) listing a set of application performance counters, but I don't see any that give me the current size of the cache.</p> <p>What is a good way to find the size this cache? Do I have to set a byte limit on the cache and look at one of the turnover rates? Am I thinking of this problem in the wrong way? Is the answer to <a href="http://stackoverflow.com/questions/344210/how-to-determine-total-size-of-asp-net-cache">How to determine total size of ASP.Net cache</a> really the best way to go?</p> http://stackoverflow.com/questions/1417011/distributing-users-or-anything-else-to-database-servers-by-hash 1 Distributing users (or anything else) to database servers by hash. Nicholas Knight 2009-09-13T06:25:35Z 2009-09-13T06:54:55Z <p>I'm working on early designs for an application that needs to start out small but be highly scalable. I'm particularly worried about the user database, which in this case will have a high INSERT and UPDATE load, and is unlikely to survive long on a single master.</p> <p>(Although my question isn't tied to any particular RDBMS, for the record, we'll be using MySQL, and MySQL Cluster doesn't really meet our needs, so we need to roll our own solution on this one using stock MySQL + InnoDB.)</p> <p>I'm considering a strategy of distributing users amongst MySQL masters based on a hash of their username (plus an unknown-to-user salt just as added insurance against any funny games). I've seen solutions like this used successfully before, but I've never designed/implemented it myself.</p> <p>What I'd like some input on is:</p> <p>1) Suitable hashing algorithms. I expect SHA-1 or even MD5 would work just fine for this, since cryptographic security really isn't the goal, but I'm not sure if there might be other algorithms out there that might have desirable properties for this sort of problem. Something a little faster might be nice, too.</p> <p>2) Any major caveats anyone can think of. (I'm already <em>very</em> conscious of the potential connection pool problem, as well as the fun in adding new masters to the pool and migrating affected users.)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1392753/silverlight-polygon-scaling-and-clipping 1 Silverlight - polygon scaling and clipping Jamie 2009-09-08T08:41:12Z 2009-09-08T10:16:44Z <p>I have a Canvas, to which I've added several thousand polygons.</p> <p>I would like to be able to zoom in (which I'm doing via a ScaleTransform.</p> <p>However I've been trying to use a Canvas.Clip as well to only draw a portion of the Canvas, but as soon as the ScaleTransform values are changed, the clipping stops working...</p> <pre><code> &lt;Canvas Grid.Row="1" Margin="10" x:Name="cnvMain" Background="Transparent" &gt; &lt;Canvas.Clip&gt; &lt;RectangleGeometry x:Name="CanvasClip" Rect="0, 0, 300, 300"/&gt; &lt;/Canvas.Clip&gt; &lt;Canvas.RenderTransform&gt; &lt;ScaleTransform x:Name="CanvasScaleTransform" ScaleX="1" ScaleY="1"&gt;&lt;/ScaleTransform&gt; &lt;/Canvas.RenderTransform&gt; &lt;/Canvas&gt; </code></pre> <p>And in my codebehind,</p> <pre><code> private void slScale_ValueChanged(object sender, RoutedPropertyChangedEventArgs&lt;double&gt; e) { CanvasScaleTransform.ScaleX = slScale.Value; CanvasScaleTransform.ScaleY = slScale.Value; } </code></pre> <p>Am I doing anything obviously wrong?</p> http://stackoverflow.com/questions/1382484/testing-how-code-scales 5 Testing How Code Scales Josh 2009-09-05T04:41:32Z 2009-09-05T04:56:04Z <p>I am currently working on some Ajax heavy code and I am wondering how my server will scale as more and more users (hopefully) start to use my web app. It is only on my internal test server for the moment and I was wondering how I would go about simulating a few hundred or thousand users so that I can see how it handles a heavier load. It is written in PHP/MySQL and I really didn't want to find hundreds of computers to set up and test manually :) Thanks in advance, any advice or direction is much appreciated.</p> http://stackoverflow.com/questions/1373035/how-do-i-scale-one-rectangle-to-the-maximum-size-possible-within-another-rectangl 1 How do I scale one rectangle to the maximum size possible within another rectangle? Agnel Kurian 2009-09-03T12:11:17Z 2009-09-03T17:24:03Z <p>I have a source rectangle and a destination rectangle. I need to find the maximum scale to which the source can be scaled while fitting within the destination rectangle and <em>maintaining its original aspect ratio</em>.</p> <p>Google found <a href="http://www.vbdotnetforums.com/graphics-gdi/33829-scale-rectangle-fit-another.html" rel="nofollow">one</a> way to do it but I'm not sure if it works in all cases. Here is my home-brewed solution:</p> <ul> <li>Calculate Height/Width for each rectangle. This gives the slopes of the diagonals <code>msrc</code> and <code>mdest</code>.</li> <li>If <code>msrc &lt; mdst</code>, scale source <em>width</em> to fit the destination <em>width</em> (and scale height by the same ratio)</li> <li>Otherwise, scale source <em>height</em> to fit the destination <em>height</em> (and scale width by the same ratio)</li> </ul> <p>Looking for other possible solutions to this problem. I'm not even sure if my algorithm works in all cases!</p> http://stackoverflow.com/questions/1364550/jquery-ui-is-not-scaling-text-properly 0 jquery ui is not scaling text properly! Stephen Belanger 2009-09-01T20:44:52Z 2009-09-02T18:41:08Z <p>I'm trying use jquery ui to scale a div that I'm dragging around to make it easier to see what's behind it, but any text inside it is scaling strangely. The text itself becomes smaller, but it seems to have a bunch of padding around it and is floating now. The text extends past the bottom of the div even though it should be contained properly by the div. I put a red border around the lines of text and the borders are the same size as the original text. I'm not really sure what to do to get this to work...</p> <p>HTML:</p> <pre><code>&lt;div class="item draggable" id="item-1'"&gt; &lt;div class="image-block"&gt; &lt;a class="delete-button" title="delete me!" href="/remove/1" onclick="return $(this).confirm(\'Really remove this image?\');"&gt;X&lt;/a&gt; &lt;a class="image" href="/edit/1"&gt;&lt;img src="/someimage.jpg" /&gt;&lt;/a&gt; &lt;div class="clear-block"&gt;&lt;/div&gt; &lt;/div&gt; &lt;h3&gt;Some title&lt;/h3&gt; &lt;/div&gt; </code></pre> <p>CSS:</p> <pre><code> div.image-list div.item { float:left; background:#fff; width:150px; padding:5px; margin:4px; border:1px solid #d3d5d6; } div.image-list div.item h3 { margin:0; padding:0; border:solid 1px #F00; } div.image-list div.item div.image-block a.delete-button { float:right; position:relative; background:#fff; display:none; top:0.8em; margin-bottom:-20.0em; width:3em; height:1.8em; padding:0.2em 1em; } div.image-list div.item div.image-block a.image { float:left; display:block; } .clear-block { clear:both; } </code></pre> <p>jquery:</p> <pre><code>$(".draggable").draggable({ helper: 'clone', start: function(ev, ui) { $(ui.helper).effect( "scale", { percent: 50 }, 200 ); } }); </code></pre> http://stackoverflow.com/questions/1363817/performance-problems-when-scaling-msvc-2005s-operator-accross-threads 2 Performance problems when scaling MSVC 2005's operator<< accross threads. Matt Price 2009-09-01T18:04:44Z 2009-09-02T07:11:46Z <p>When looking at some of our logging I've noticed in the profiler that we were spending a lot of time in the <code>operator&lt;&lt;</code> formatting ints and such. It looks like there is a shared lock that is used whenever <code>ostream::operator&lt;&lt;</code> is called when formatting an int(and presumably doubles). Upon further investigation I've narrowed it down to this example:</p> <p>Loop1 that uses <code>ostringstream</code> to do the formatting:</p> <pre><code>DWORD WINAPI doWork1(void* param) { int nTimes = *static_cast&lt;int*&gt;(param); for (int i = 0; i &lt; nTimes; ++i) { ostringstream out; out &lt;&lt; "[0"; for (int j = 1; j &lt; 100; ++j) out &lt;&lt; ", " &lt;&lt; j; out &lt;&lt; "]\n"; } return 0; } </code></pre> <p>Loop2 that uses the same <code>ostringstream</code> to do everything but the int format, that is done with <code>itoa</code>:</p> <pre><code>DWORD WINAPI doWork2(void* param) { int nTimes = *static_cast&lt;int*&gt;(param); for (int i = 0; i &lt; nTimes; ++i) { ostringstream out; char buffer[13]; out &lt;&lt; "[0"; for (int j = 1; j &lt; 100; ++j) { _itoa_s(j, buffer, 10); out &lt;&lt; ", " &lt;&lt; buffer; } out &lt;&lt; "]\n"; } return 0; } </code></pre> <p>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:</p> <pre><code>doWork1: all ostringstream n Total 1 557 2 8092 3 15916 4 15501 doWork2: use itoa n Total 1 200 2 112 3 100 4 105 </code></pre> <p>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. </p> <p>One idea is to use <code>_configthreadlocale(_ENABLE_PER_THREAD_LOCALE)</code> as recommended by <a href="http://msdn.microsoft.com/en-us/library/ms235505%28VS.80%29.aspx" rel="nofollow">M$ in this article</a>. That doesn't seem to help me. <a href="http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/b01349e8-99c7-4c7b-a9cb-dea0690467b3" rel="nofollow">Here's another user</a> who seem to be having a similar issue.</p> <p>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&lt;&lt; overloaded for the integral and floating types and then have a templated version that just calls operator&lt;&lt; on the underlying stream. A bit ugly, but I think I can make it work, though maybe not for user defined <code>operator&lt;&lt;(ostream&amp;,T)</code> because it's not an <code>ostream</code>. </p> <p>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.</p> http://stackoverflow.com/questions/1365154/flv-gets-scaled-down-to-320-x-240-without-me-asking-it-to 0 FLV gets scaled down to 320 x 240 without me asking it to. sol 2009-09-01T23:28:03Z 2009-09-01T23:38:06Z <p>i'm simply playing a video file the normal way:</p> <pre><code>var nc = new NetConnection(); nc.connect(null); ns = new NetStream(nc); var vid = new Video(); this.addChild(vid); vid.attachNetStream(ns); ns.play(videofile); </code></pre> <p>My flv file is actually 600x678, but shows up scaled down on the stage, and tracing the width and height I get 320x240. I'm not setting this anywhere. Why is it getting scaled down?</p> http://stackoverflow.com/questions/1049319/haproxy-and-sharding 0 HAProxy and "sharding" Manish V 2009-06-26T14:01:22Z 2009-08-27T17:04:15Z <p>I was wondering if anyone has used HAProxy for sharding. Specifically, I would like to be able use a cookie I define w/a identifier and have any client that presents that cookie/identifier combination be directed to the same server. It seems possible and my preliminary tests seem to work but I am not a sure.</p> <p>My listen configuration looks like:</p> <pre><code>listen appli1-rewrite 0.0.0.0:80 cookie mysession= prefix balance roundrobin server app1_1 192.168.0.1:80 cookie server01 server app1_2 192.168.0.2:80 cookie server02 option httpclose </code></pre> <p>However, when I look at the request headers using Live Http Headers I don't see the mysession cookie indicating which server it will be going to, which is what I expected based on the prefix operation. I am quite new to HAProxy so any help/guidance would be great!</p>