User Ed Lucas - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T13:41:48Zhttp://stackoverflow.com/feeds/user/12551http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/326141/defining-templates-for-common-look-and-feel-pragmatically/326187#3261870Answer by Ed Lucas for Defining templates for common look and feel pragmaticallyEd Lucas2008-11-28T16:40:32Z2008-11-28T16:40:32Z<p>Conceptually, I think you're very much on the right track. It's much easier to conceive of a page model in terms of some very simple containers (header, footer, content). You can take it a step further by defining blocks of display logic (top navbar, footer links, left ad bar, etc.) that you can use to populate the larger containers.</p>
<p>Pragmatically, how would you do this? First, it depends on what platform and language you're using. Solutions for .NET, Java, PHP, or flat HTML could be implemented differently depending on where you choose to draw the lines. In flat HTML, one way is to use #include files. In the programming languages, you have to decide what your outermost container structure is going to be and how you're going to define the building blocks (which by default defines how you aggregate them). There are many possible ways to do this.</p>
<p>And are you going to be the person creating & managing the site, or will you be delegating that responsibility to a team of non-technical content owners across your organization? That answer can bear heavily on your design choices.</p>
<p>In many of the content management systems, the idea is to cleanly separate content from presentation. So there is a generic content storage paradigm typically in a database and then there is a dynamic way to present that content out through some display mechanism written in a lightweight platform.</p>
http://stackoverflow.com/questions/325929/is-the-only-way-of-passing-post-parameters-in-html-through-a-form/326073#3260731Answer by Ed Lucas for Is the only way of passing POST parameters in HTML through a form?Ed Lucas2008-11-28T15:47:21Z2008-11-28T15:47:21Z<p>As you've already discovered, there are exactly two ways to transmit data over the http protocol: <code>GET</code> or <code>POST</code>. There is also a third type of HTTP message called <code>HEAD</code>, but that's really only used to get the meta data around a resource without downloading it and isn't widely implemented.</p>
<p>Obviously both <code>GET</code> and <code>POST</code> are easily accessible through the use of a <code><form></code> tag. The <code>GET</code> is also easily accessible by manually adding query parameters to the URL in the form of name-value pairs (<code>foo.html?a=1&b=2</code>). </p>
<p>The beauty and complexity of the <code>POST</code>, however, is that the name-value pairs are communicated from the browser to the web server enclosed within the HTTP request header which is not as easily accessible. The only way to accomplish the <code>POST</code> without using a <code><form></code> tag is to manually alter the HTTP request header and add the name-value pairs in yourself. </p>
<p>Also keep in mind that an HTTP server doesn't intrinsically know whether a request (<code>GET</code> or <code>POST</code>) came from a main browser window or an AJAX call. Regardless, the web server will read the request, will decipher if it's a <code>GET</code> or <code>POST</code> request, look for name-value pairs as appropriate, and generate a response.</p>
<p>If you'd like additional detail on how to properly format a <code>POST</code> request you can go to <a href="http://www.jmarshall.com/easy/http/" rel="nofollow">jmarshall.com/easy/http/</a> or perhaps <a href="http://www.tcpipguide.com/free/t_HTTPRequestMessageFormat.htm" rel="nofollow">tcpipguide.com/free/t_HTTPRequestMessageFormat.htm</a>. The definitive resource is always the <a href="http://www.w3.org/Protocols/HTTP/1.0/spec.html" rel="nofollow">W3C</a>, but sometimes the RFCs can be terribly confusing for us mere mortals to read.</p>
http://stackoverflow.com/questions/325862/what-are-the-most-common-security-mistakes-programmers-make/325982#32598241Answer by Ed Lucas for What are the most common security mistakes programmers make?Ed Lucas2008-11-28T15:05:46Z2008-11-28T15:05:46Z<p>There are a lot of good tactical suggestions already. Let me offer a strategic observation. Most applications are written from the default security perspective of "allow all". This means a programmer will start coding everything wide open and then (hopefully) will start to consider elements that need to be secured (these tactical suggestions which have already been made are terrific examples of that).</p>
<p>This happens across the board. Everything from operating systems to fat clients to web-based thin clients are constructed this way. That's a primary reason why every Tuesday Microsoft comes out with a set of patches. Vulnerabilities continue to be discovered and must be remediated in a never-ending stream of patches.</p>
<p>My strategic suggestion is this: start coding from a default perspective of "deny all". Every architectural element, every layer, every object, every method, every variable...construct them to be inaccessible to anything unless you expressly allow it. This will slow down your productivity a little (at least at first). However, once you become accustomed to thinking this way, your delivered code will be vastly more secure. </p>
<p>Another analogy to this is when a programmer decides that unit testing is a good thing. Or maybe even TDD if you want to go to the extreme end of that spectrum. It takes a truckload more work to write the unit test first and then write the code to make the test pass than it takes to just write the code. But the end result is an order of magnitude more stable, and one could argue that overall less time is spent tracking down defects when a smart investment in unit testing is made.</p>
http://stackoverflow.com/questions/320716/how-much-should-a-contractor-charge-as-a-day-rate/321033#32103311Answer by Ed Lucas for How much should a contractor charge as a day rate?Ed Lucas2008-11-26T15:09:57Z2008-11-26T15:09:57Z<p>Typically one can estimate 2000 billable hours in a year. There are actually 2080 (52 weeks x 40 hrs/wk), but you'll at least be taking a couple weeks worth of holidays and vacation, and likely more. That works out to roughly 250 billable days per year.</p>
<p>I've always done an hourly rate, not a daily rate, so I'll couch my answer in those terms to begin with. Each $10/hr is equivalent to $20k annual revenue. So $50/hr = $100k/yr. Keep in mind that, right or wrong, a company will always value a contractor more highly than an employee. I don't know why that is, but I've seen it everywhere I've ever been. Companies are usually willing to pay a contractor a minimum of 1.5x what they'd pay an employee, and usually it's between 2x and 3x. Occasionally it can be as high as 4x and depends on the situation.</p>
<p>What makes the most difference is how many links are in the chain between the company (who's paying) and you (the resource). In most contracting situations I've seen, there's a middle-man staffing firm who has the prime contract and all the resources sub through them. The main reason is liability protection for the company. If you can ever get a direct contracting gig with a company, that's actually better for both of you. The company will be able to pay less for you while allowing you to see more money.</p>
<p>Here's an example. Say a company ("Acme") is looking for a strong mid-level programmer in the NYC market for whom they could hire for $75k plus benefits. So call it $110k all-in counting benefits. Acme reaches out to a staffing firm to source the position. The staffing firm will propose a rate of $120/hr (which is equivalent to $240k/yr). The staffing firm advertises the position on monster.com at a rate range of $60-$80/hr. They get a bunch of resumes and the staffing firm interviews the top 5 candidates and orders them by fit and desired rate. The staffing firm's objective is to find the cheapest possible resource that'll fit the requirements because that will maximize the staffing firm's margin. They send over a couple of folks to Acme to interview, one of whom is a good fit so Acme pulls the trigger on "John".</p>
<p>So John the contractor negotiates a $75/hr rate with the staffing firm and he gets placed on the gig. He's making the equivalent of $150k/yr, the company is paying the equivalent of $240/yr and the staffing firm is making $90k/yr margin (37.5%).</p>
<p>If John were able to get the contracting gig directly with Acme, he could've negotiated maybe $95-100/hr which represents an extra $40-50k/yr in his pocket with a similar decrease in Acme's expenses.</p>
<p>Now let's talk hourly vs. daily rate. There are a number of different ways a company can spin it. They can call it a "professional day" rate. They can also call it a cap on billing. "I don't care how many hours you put in, I want to see 8 hours a day across the board." What are the pros and cons? Typically the company does a day rate to limit the overtime they would normally have to pay if they're driving hard on a project. It's free labor to them. The only upside to the resource is that a partial day worked (like if the company lets everyone out at 2pm the day before Christmas) equals a full day billed. Same situation if the weekend on-call beeper goes off. A daily billing usually simplifies the time reporting requirement.</p>
<p>So, now let's answer your question. Shoot for 2-3x the salary of a full-time employee. Given the specific situation, you may need to settle for less or you may be able to get more. Protect yourself in terms of giving away unbilled labor. If you put in 50 hrs/wk and only bill for 40, for the year you're giving away 500 hours for free which lowers your effective hourly rate by a substantial percentage. Of course certain markets are hotter than others and you may have to adjust based on supply and demand. A small town in the midwest likely doesn't have as much demand for technology resources as perhaps a large metro area or specific hotbed (silicon valley, research triangle, etc.).</p>
http://stackoverflow.com/questions/204696/does-field-size-affect-query-time/204751#2047510Answer by Ed Lucas for Does field size affect query time?Ed Lucas2008-10-15T13:45:01Z2008-10-15T13:45:01Z<p>Very rarely will column width affect query performance. Certainly if you're using larger objects (BLOBs, LONGBLOBs, TEXTs, LONGTEXTs), there is the potential for a lot of data to get pulled. That could possibly affect performance, but it won't necessarily. That really only affects storage. If you care about storage size by data type, you can reference <a href="http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html</a> to see the details.</p>
<p>And to reiterate: storage size of data does not necessarily impact the speed of queries. There are many other design considerations that will impact query speed. Design of the tables and relationships, key structure, indexes, query and join architecture, etc.</p>
http://stackoverflow.com/questions/202144/merge-code-changes-without-true-source-control/202581#2025812Answer by Ed Lucas for Merge code changes without true source controlEd Lucas2008-10-14T20:03:22Z2008-10-14T20:03:22Z<p>There are two distinct issues: version control and merging. There's absolutely no excuse to NOT use a version control system. If the company has decided on a solution (for whatever reason), then use it. Not liking it or not "having confidence" in it is not a valid reason for not using it. And using a shared drive to mimic a source code control system is beyond crazy.</p>
<p>Merging is a second issue. You simply need a diff/merge tool. Pick one. How have you gone this long without one?! </p>
<p>Araxis is a great one. Costs a few bucks. The SourceGear folks have been freely distributing their diff/merge tool for some time (the one that comes with Vault). It's also a solid contender. Those are two that I've used that I know are still on the market now. There are others some already have mentioned. </p>
<p>Merging everything by hand is not a tenable solution. Combining that with <em>not</em> using a VCS is a recipe for disaster.</p>
http://stackoverflow.com/questions/141126/what-is-important-to-keep-in-mind-when-designing-a-database/141400#1414001Answer by Ed Lucas for What is important to keep in mind when designing a database?Ed Lucas2008-09-26T19:23:11Z2008-09-26T19:23:11Z<p>I strongly echo that normalization is critical, with tactical de-normalization to follow for performance or other maintainability reasons. However, if you're expecting to have more than just a few tables, I'd like to offer one caveat about normalization that will make your life a lot easier as the number of tables grows.</p>
<p>The caveat is to make the primary key for each table a single numeric column (appropriate for your flavor of DB). In academic normalization, the idea is to combine whatever attributes (columns) of an entity (table) so that you can uniquely identify an instance of what is being described (row), and you can end up with a multi-column composite primary key. So then whenever you migrate that composite key as a foreign key to other tables, you end up duplicating those multiple columns in <em>every</em> table that references it. That might work for you if you only have half a dozen tables. But it falls apart quickly when you go much bigger than that.</p>
<p>So instead of a multi-column composite primary key, go with a sequential numeric primary key even though that approach goes against some of the strict normalization teachings.</p>
http://stackoverflow.com/questions/139017/learning-a-programming-language-at-an-elderly-age/139357#1393571Answer by Ed Lucas for Learning a programming language at an elderly age?Ed Lucas2008-09-26T13:02:51Z2008-09-26T13:02:51Z<p>Let's take this slightly more generally. I believe everyone should learn other languages (or means of expression) regardless of age or perceived ability. Your original question was specific to computer programming languages, but the answer applies to all means of expression. The act of building fluency in a "foreign" construct builds new pathways in the brain to allow a person to think differently.</p>
<p>So let's take your specific example first, programming languages. The archetypal example is "Hello world". The student may have to learn a small handful of skills before that phrase can be output, but once those skills are learned the student's thought process is forever changed. When you read the phrase "Hello world", how many of you instinctively knew <em>exactly</em> what I was talking about? All of you, right? You think differently once you know. And as you learn how to solve specific technical problems in that particular language, that solution stays with you and even affects how you perceive problems you encounter in other areas of your life.</p>
<p>I watched an elderly family member who had some life altering medical issues regain a significant portion of his mental acuity by teaching himself how to build a computer from parts and subsequently teach himself rudimentary HTML skills (neither of which he knew prior to his issues). It's not programming, but it's pretty darn close. So empirically, I've seen it have tremendous impact.</p>
<p>Another example is music. Statistically, the majority of us participating here are likely also musicians. Even if you have only rudimentary skills, the way your brain reacts when you hear music is dramatically different than if you've never studied. If you've been playing since you were 4, it's also likely that you can't even remember when you didn't know about music.</p>
<p>It's the same with spoken and written language. Being multi-lingual allows you to think (and sometimes even act) differently based on the language you're speaking and the culture it represents. Communicating natively in Japanese is quite a different thought process than communicating in American English.</p>
<p>So, I'm a huge fan of fluency in <em>all</em> means of expression, technical or otherwise, and I think people of all ages can benefit tremendously from it. Thanks for asking the question!</p>
http://stackoverflow.com/questions/126979/xml-vs-text-for-non-web-development-applications/127307#1273071Answer by Ed Lucas for XML vs Text for Non-web development applicationsEd Lucas2008-09-24T14:00:01Z2008-09-24T14:00:01Z<p>There's absolutely nothing wrong with using text-based data formatting. It has been the de-facto standard for decades. Big huge mainframe financial systems <em>still</em> use it today. The benefits are that it's trivial to produce, trivial to consume and incredibly lightweight. And how about log files? Do you know any production platform that <em>doesn't</em> generate its log file in a delimited text format (web, app, db server)?</p>
<p>The downside of flat text files is that if the format changes, then you have to modify both the producer and the consumer ends non-trivially to be able to support the format change. Of course if it's just a human consuming the result, then you only have to change the producer.</p>
<p>The beauty of XML is that the parsing of the data is independent from not only the data but the format of the data. Logically you pass it both the data and the data format, and presto! Everything works. It's not exactly that simple, but that's the premise. You can change the format of the data, and your producers and consumers only have to change trivially (if at all).</p>
<p>The ugly of XML is that it can be a huge performance dog (SOAP anyone?) and very heavy weight. You definitely pay a price for its extensibility. There are cases where it is absolutely the optimized technical solution for a given problem domain, and there are other cases where it's not.</p>
<p>So if it's a simple log that a human will read, keep it flat file. If it's a simple app communicating with another single app <em>and</em> the communications will not change dramatically over time, flat file is definitely faster and lighter to implement, but XML is not a bad choice. If multiple apps need to consume the data you're providing or if the volume of communication change is going to be high, then go with XML. The maintenance of the interface will be more easily maintained over time if you do.</p>
http://stackoverflow.com/questions/97704/what-to-use-for-version-control-with-visual-studio-2008-for-inhouse-projects/97859#978590Answer by Ed Lucas for What to use for version control with Visual Studio 2008 for inhouse projects?Ed Lucas2008-09-18T23:06:21Z2008-09-18T23:06:21Z<p>My favorite source code control system is ClearCase, both as a developer and as an administrator. Since as a developer you'll only really be using snapshot views, the "LT" cheaper version is more than sufficient. The only downside is that their diff-merge tool isn't as elegant or fully featured as it ought to be. We used Araxis and integrated it directly with ClearCase so that all diffs and merges were done with Araxis.</p>
<p>I've also had good luck with SourceGear Vault. It's easy to administer, and their diff-merge tool works well (and it can also be used standalone). Eric Sink is their CEO, and he's a straight shooter.</p>
<p>On the open source front, Subversion is the easy winner. You'll want to pick a front end for it, and there are several suitable ones from which to choose (many of which have already been mentioned). You can easily set it up for single-machine use if you're doing Lone Ranger work, and it's not much more difficult to set it up server-style for team efforts (which is the preferred way).</p>
<p>Any of these systems mentioned have sufficient command-line ability to play nicely with any build tools you choose (ant, nant, whatever), and while the core paradigms of each are slightly different from each other, all are easily mastered with a little effort. All are also integrateable with most IDEs, but I'd verify that your chosen IDE works your chosen VCS before committing. </p>
<p>Definitely stay away from VSS. It's not as durable as it ought to be, and it's missing some enterprise class features. It might be ok for simple mom-and-pop work, but don't trust it for larger teams or if you decide to do any serious multi-branch work.</p>
http://stackoverflow.com/questions/86992/how-do-you-manage-pick-lists-in-a-database/87182#871821Answer by Ed Lucas for How do you manage "pick lists" in a database.Ed Lucas2008-09-17T20:18:56Z2008-09-17T20:27:18Z<p>Two tables. If you try to cram everything into one table then you break normalization (if you care about that). Here are examples:</p>
<pre>
LIST
---------------
LIST_ID (PK)
NAME
DESCR
LIST_OPTION
----------------------------
LIST_OPTION_ID (PK)
LIST_ID (FK)
OPTION_NAME
OPTION_VALUE
MANUAL_SORT
</pre>
<p>The list table simply describes a pick list. The list_ option table describes each option in a given list. So your queries will always start with knowing which pick list you'd like to populate (either by name or ID) which you join to the list_ option table to pull all the options. The manual_sort column is there just in case you want to enforce a particular order other than by name or value. (BTW, whenever I try to post the words "list" and "option" connected with an underscore, the preview window goes a little wacky. That's why I put a space there.)</p>
<p>The query would look something like:</p>
<pre>
select
b.option_name,
b.option_value
from
list a,
list_option b
where
a.name="States"
and
a.list_id = b.list_id
order by
b.manual_sort asc
</pre>
<p>You'll also want to create an index on list.name if you think you'll ever use it in a where clause. The pk and fk columns will typically automatically be indexed. </p>
<p>And please don't create a new table for each pick list unless you're putting in "relationally relevant" data that will be used elsewhere by the app. You'd be circumventing exactly the relational functionality that a database provides. You'd be better off statically defining pick lists as constants somewhere in a base class or a properties file (your choice on how to model the name-value pair).</p>
http://stackoverflow.com/questions/83147/whats-wrong-with-foreign-keys/85298#852983Answer by Ed Lucas for What's wrong with foreign keys?Ed Lucas2008-09-17T16:55:17Z2008-09-17T16:55:17Z<p>This is an issue of upbringing. If somewhere in your educational or professional career you spent time feeding and caring for databases (or worked closely with talented folks who did), then the fundamental tenets of entities and relationships are well-ingrained in your thought process. Among those rudiments is how/when/why to specify keys in your database (primary, foreign and perhaps alternate). It's second nature.</p>
<p>If, however, you've not had such a thorough or positive experience in your past with RDBMS-related endeavors, then you've likely not been exposed to such information. Or perhaps your past includes immersion in an environment that was vociferously anti-database (e.g., "those DBAs are idiots - we few, we chosen few java/c# code slingers will save the day"), in which case you might be vehemently opposed to the arcane babblings of some dweeb telling you that FKs (and the constraints they can imply) really are important if you'd just listen.</p>
<p>Most everyone was taught when they were kids that brushing your teeth was important. Can you get by without it? Sure, but somewhere down the line you'll have less teeth available than you could have if you had brushed after every meal. If moms and dads were responsible enough to cover database design as well as oral hygiene, we wouldn't be having this conversation. :-)</p>
http://stackoverflow.com/questions/77172/stored-procedures-db-schema-in-source-control/77594#775941Answer by Ed Lucas for Stored procedures/DB schema in source controlEd Lucas2008-09-16T21:54:36Z2008-09-16T21:54:36Z<p>Couple different perspectives from my experience. In the Oracle world, everything was managed by "create" DDL scripts. As ahockley mentioned, one script for each object. If the object needs to change, its DDL script is modified. There's one wrapper script that invokes all the object scripts so that you can deploy the current DB build to whatever environment you want. This is for the main core create. </p>
<p>Obviously in a live application, whenever you push a new build that requires, say, a new column, you're not going to drop the table and create it new. You're going to do an ALTER script and add the column. So each time this kind of change needs to happen, there are always two things to do: 1) write the alter DDL and 2) update the core create DDL to reflect the change. Both go into source control, but the single alter script is more of a momentary point in time change since it will only be used to apply a delta.</p>
<p>You could also use a tool like ERWin to update the model and forward generate the DDL, but most DBAs I know don't trust a modeling tool to gen the script exactly the way they want. You could also use ERWin to reverse engineer your core DDL script into a model periodically, but that's a lot of fuss to get it to look right (every blasted time you do it).</p>
<p>In the Microsoft world, we employed a similar tactic, but we used the Red Gate product to help manage the scripts and deltas. Still put the scripts in source control. Still one script per object (table, sproc, whatever). In the beginning, some of the DBAs really preferred using the SQL Server GUI to manage the objects rather than use scripts. But that made it very difficult to manage the enterprise consistently as it grew.</p>
<p>If the DDL is in source control, it's trivial to use any build tool (usually ant) to write a deployment script.</p>
http://stackoverflow.com/questions/41367/how-can-i-make-my-applications-scale-well/77257#772575Answer by Ed Lucas for How can I make my applications scale well?Ed Lucas2008-09-16T21:21:31Z2008-09-16T21:21:31Z<p>Ok, so you've hit on a key point in using the "big O notation". That's one dimension that can certainly bite you in the rear if you're not paying attention. There are also other dimensions at play that some folks don't see through the "big O" glasses (but if you look closer they really are). </p>
<p>A simple example of that dimension is a database join. There are "best practices" in constructing, say, a left inner join which will help to make the sql execute more efficiently. If you break down the relational calculus or even look at an explain plan (Oracle) you can easily see which indexes are being used in which order and if any table scans or nested operations are occurring.</p>
<p>The concept of profiling is also key. You have to be instrumented thoroughly and at the right granularity across all the moving parts of the architecture in order to identify and fix any inefficiencies. Say for example you're building a 3-tier, multi-threaded, MVC2 web-based application with liberal use of AJAX and client side processing along with an OR Mapper between your app and the DB. A simplistic linear single request/response flow looks like:</p>
<pre>
browser -> web server -> app server -> DB -> app server -> XSLT -> web server -> browser JS engine execution & rendering
</pre>
<p>You should have some method for measuring performance (response times, throughput measured in "stuff per unit time", etc.) in each of those distinct areas, not only at the box and OS level (CPU, memory, disk i/o, etc.), but specific to each tier's service. So on the web server you'll need to know all the counters for the web server your're using. In the app tier, you'll need that plus visibility into whatever virtual machine you're using (jvm, clr, whatever). Most OR mappers manifest inside the virtual machine, so make sure you're paying attention to all the specifics if they're visible to you at that layer. Inside the DB, you'll need to know <em>everything</em> that's being executed and all the specific tuning parameters for your flavor of DB. If you have big bucks, BMC Patrol is a pretty good bet for most of it (with appropriate knowledge modules (KMs)). At the cheap end, you can certainly roll your own but your mileage will vary based on your depth of expertise.</p>
<p>Presuming everything is synchronous (no queue-based things going on that you need to wait for), there are tons of opportunities for performance and/or scalability issues. But since your post is about scalability, let's ignore the browser except for any remote XHR calls that will invoke another request/response from the web server.</p>
<p>So given this problem domain, what decisions could you make to help with scalability?</p>
<ol>
<li><p>Connection handling. This is also bound to session management and authentication. That has to be as clean and lightweight as possible without compromising security. The metric is maximum connections per unit time.</p></li>
<li><p>Session failover at each tier. Necessary or not? We assume that each tier will be a cluster of boxes horizontally under some load balancing mechanism. Load balancing is typically very lightweight, but some implementations of session failover can be heavier than desired. Also whether you're running with sticky sessions can impact your options deeper in the architecture. You also have to decide whether to tie a web server to a specific app server or not. In the .NET remoting world, it's probably easier to tether them together. If you use the Microsoft stack, it may be more scalable to do 2-tier (skip the remoting), but you have to make a substantial security tradeoff. On the java side, I've always seen it at least 3-tier. No reason to do it otherwise.</p></li>
<li><p>Object hierarchy. Inside the app, you need the cleanest possible, lightest weight object structure possible. Only bring the data you need when you need it. Viciously excise any unnecessary or superfluous getting of data.</p></li>
<li><p>OR mapper inefficiencies. There is an impedance mismatch between object design and relational design. The many-to-many construct in an RDBMS is in direct conflict with object hierarchies (person.address vs. location.resident). The more complex your data structures, the less efficient your OR mapper will be. At some point you may have to cut bait in a one-off situation and do a more...uh...primitive data access approach (Stored Procedure + Data Access Layer) in order to squeeze more performance or scalability out of a particularly ugly module. Understand the cost involved and make it a conscious decision.</p></li>
<li><p>XSL transforms. XML is a wonderful, normalized mechanism for data transport, but man can it be a huge performance dog! Depending on how much data you're carrying around with you and which parser you choose and how complex your structure is, you could easily paint yourself into a very dark corner with XSLT. Yes, academically it's a brilliantly clean way of doing a presentation layer, but in the real world there can be catastrophic performance issues if you don't pay particular attention to this. I've seen a system consume over 30% of transaction time just in XSLT. Not pretty if you're trying to ramp up 4x the user base without buying additional boxes.</p></li>
<li><p>Can you buy your way out of a scalability jam? Absolutely. I've watched it happen more times than I'd like to admit. Moore's Law (as you already mentioned) is still valid today. Have some extra cash handy just in case.</p></li>
<li><p>Caching is a great tool to reduce the strain on the engine (increasing speed and throughput is a handy side-effect). It comes at a cost though in terms of memory footprint and complexity in invalidating the cache when it's stale. My decision would be to start completely clean and slowly add caching only where you decide it's useful to you. Too many times the complexities are underestimated and what started out as a way to fix performance problems turns out to cause functional problems. Also, back to the data usage comment. If you're creating gigabytes worth of objects every minute, it doesn't matter if you cache or not. You'll quickly max out your memory footprint and garbage collection will ruin your day. So I guess the takeaway is to make sure you understand exactly what's going on inside your virtual machine (object creation, destruction, GCs, etc.) so that you can make the best possible decisions.</p></li>
</ol>
<p>Sorry for the verbosity. Just got rolling and forgot to look up. Hope some of this touches on the spirit of your inquiry and isn't too rudimentary a conversation.</p>
http://stackoverflow.com/questions/72394/what-should-a-developer-know-before-building-a-public-web-site/73970#7397024Answer by Ed Lucas for What should a developer know before building a public web site?Ed Lucas2008-09-16T16:03:29Z2008-09-16T16:03:29Z<p>Here are a couple thoughts. </p>
<p>First, staging. For most simple sites developers overlook the idea of having one or more test or staging environments available to smoothly implement changes to architecture, code or sweeping content. Once the site is live, you must have a way to make changes in a controlled way so the production users aren't negatively affected. This is most effectively implemented in conjunction with the use of a version control system (cvs, subversion, etc.) and an automated build mechansim (ant, nant, etc.).</p>
<p>Second, backups! This is especially relevant if you have a database back-end serving content or transaction information. Never rely on the hosting provider's nightly tape backups to save you from catastrophe. Make triple-sure you have an appropriate backup and restore strategy mapped out just in case a critical production element gets destroyed (database table, config file, whatever).</p>
http://stackoverflow.com/questions/528500/net-best-practices/528516#528516Comment by Ed Lucas on .NET best practices?Ed Lucas2009-02-09T15:19:44Z2009-02-09T15:19:44ZAmen on resharper and fxcop.http://stackoverflow.com/questions/325575/jsp-or-php-for-java-server-components/325604#325604Comment by Ed Lucas on JSP or PHP for Java server components?Ed Lucas2008-11-28T16:12:23Z2008-11-28T16:12:23ZAgree that JSP is the way to go. Len W's suggestion about taglibs is also right on the money if you're going to be re-using a lot of display logic.