zoukankan      html  css  js  c++  java
  • WET Dilutes Performance Bottlenecks

    WET Dilutes Performance Bottlenecks

    Kirk Pepperdine

    THE IMPORTANCE OF THE DRY PRINCIPLE (Don’t Repeat Yourself) is that it codifies the idea that every piece of knowledge in a system should have a singular representation. In other words, knowledge should be contained in a single implementation. The antithesis of DRY is WET (Write Every Time). Our code is WET when knowledge is codified in several different implemen- tations. The performance implications of DRY versus WET become very clear when you consider their numerous effects on a performance profile.
    Let’s start by considering a feature of our system, say X, that is a CPU bottle- neck. Let’s say feature X consumes 30% of the CPU. Now let’s say that feature X has 10 different implementations. On average, each implementation will consume 3% of the CPU. As this level of CPU utilization isn’t worth worrying about if we are looking for a quick win, it is likely that we’d miss that this fea- ture is our bottleneck. However, let’s say that we somehow recognized feature X as a bottleneck. We are now left with the problem of finding and fixing every single implementation. With WET, we have 10 different implementations that we need to find and fix. With DRY, we would clearly see the 30% CPU utiliza- tion and would have a tenth of the code to fix. And did I mention that we don’t have to spend time hunting down each implementation?


    There is one use case where we are often guilty of violating DRY: our use of collections. A common technique to implement a query would be to iterate over the collection and then apply the query in turn to each element:

      public class UsageExample {
            private ArrayList<Customer> allCustomers = new ArrayList<Customer>();
            // ...
            public ArrayList<Customer> findCustomersThatSpendAtLeast(Money amount) {
                ArrayList<Customer> customersOfInterest = new ArrayList<Customer>();
                for (Customer customer: allCustomers) {
                    if (customer.spendsAtLeast(amount))

    customersOfInterest.add(customer);
                }
                return customersOfInterest;
            }
    }

    By exposing this raw collection to clients, we have violated encapsulation. This not only limits our ability to refactor, but it also forces users of our code to vio- late DRY by having each of them reimplement potentially the same query. This situation can easily be avoided by removing the exposed raw collections from the API. In this example, we can introduce a new, domain-specific collective type called CustomerList. This new class is more semantically in line with our domain. It will act as a natural home for all our queries.
    Having this new collection type will also allow us to easily see if these queries are a performance bottleneck. By incorporating the queries into the class, we eliminate the need to expose representation choices, such as ArrayList, to our clients. This gives us the freedom to alter these implementations without fear of violating client contracts:

        public class CustomerList {
            private ArrayList<Customer> customers = new ArrayList<Customer>();
            private SortedList<Customer> customersSortedBySpendingLevel =
                    new SortedList<Customer)();
            // ...
            public CustomerList findCustomersThatSpendAtLeast(Money amount) {
    return new CustomerList( customersSortedBySpendingLevel.elementsLargerThan(amount));
    } }
        public class UsageExample {
            public static void main(String[] args) {
                CustomerList customers = new CustomerList();
                // ...
                CustomerList customersOfInterest =
    // ... }
    }

    customers.findCustomersThatSpendAtLeast(someMinimalAmount);
    In this example, adherence to DRY allowed us to introduce an alternate index- ing scheme with SortedList keyed on our customers’ level of spending. More important than the specific details of this particular example, following DRY helped us to find and repair a performance bottleneck that would have been more difficult to find had the code been WET.

  • 相关阅读:
    linux开发中常用的命令及技巧(连载)
    使用CCS调试基于AM335X的SPL、Uboot(原创)
    [C语言]变量的声明和定义有什么区别
    C语言中void*详解及应用
    使用中断处理程序实现loop功能
    原码,反码,补码的深入理解与原理
    关于C和C++不同源文件中重名变量的问题(转)
    const extern static 终极指南(转)
    函数调用栈分析
    16位和32位的80X86汇编语言的区别(转)
  • 原文地址:https://www.cnblogs.com/jhcelue/p/7052548.html
Copyright © 2011-2022 走看看