<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    隨筆 - 41  文章 - 29  trackbacks - 0
    <2008年12月>
    30123456
    78910111213
    14151617181920
    21222324252627
    28293031123
    45678910

    常用鏈接

    留言簿(5)

    隨筆分類(28)

    隨筆檔案(23)

    收藏夾(6)

    Inside JVM

    Java

    java performance

    Solr

    搜索

    •  

    最新評論

    閱讀排行榜

    評論排行榜

         摘要: 本文討論了實際工作中單元測試實踐和測試驅動開發的感受和困惑,并試圖通過研究業界實踐來回答如下問題:為什么要進行單元測試,對誰進行單元測試,怎么進行單元測試。  閱讀全文
    posted @ 2010-07-13 17:34 Justin Chen 閱讀(2896) | 評論 (2)編輯 收藏
         摘要: This message is a summary based on a very good article (http://www.ibm.com/developerworks/java/library/j-ts1.html?S_TACT=105AGX02&S_CMP=EDU) and focusing on common mistakes when implementing transactions in the Java platform. The original article is aimed to discuss Transaction Strategy. Here, we just want to discuss the common mistakes on transaction management.   閱讀全文
    posted @ 2009-04-15 15:12 Justin Chen 閱讀(2872) | 評論 (0)編輯 收藏
         摘要: 從今天開始,本人將逐章翻譯《剖析SQL Server執行計劃(Dissecting SQL Server Execution Plans)》一書。該書是系列叢書《高性能SQL代碼的藝術》的第一本,來源于http://www.infoq.com/news/2009/03/SQL- Performance。該書由SQL Server專家Grant Frltchey編寫,并頗獲好評。  閱讀全文
    posted @ 2009-04-14 22:43 Justin Chen 閱讀(2292) | 評論 (0)編輯 收藏
         摘要: An Introduction to memcached - Improve Your Web Site Performance By Cache  閱讀全文
    posted @ 2009-04-12 21:29 Justin Chen 閱讀(2099) | 評論 (0)編輯 收藏
         摘要: This article is a short summary on the interview with Werner Vogels, who is the CTO of Amazon.com.   閱讀全文
    posted @ 2009-04-11 21:27 Justin Chen 閱讀(850) | 評論 (0)編輯 收藏
         摘要: This document is a summary or outline of Sun's document: Tuning Garbage collection with the 1.4.2 Hotspot JVM located here: http://java.sun.com/docs/hotspot/gc1.4.2/  閱讀全文
    posted @ 2009-04-01 17:19 Justin Chen 閱讀(1063) | 評論 (0)編輯 收藏
         摘要: Mock test is a very good way to test unit of codes. However, Mock test need lots effort on creating mock object, creating input and output parameter, and creating AugumentMatcher, and also comparing the expected result and actual results (assertions). Using Unitils can Simplify most of the manual work required by Mock Test.   閱讀全文
    posted @ 2009-03-30 22:30 Justin Chen 閱讀(2012) | 評論 (1)編輯 收藏
         摘要: Java Memory Management is one of the most important Java Core Techniques. It is worth for every developer to spend some time to learn how it works. It is also a very interesting topic. I try to provide an overview on Java Memory Management, so, some detailed are omitted in the slides, please see detailed by the Reference Links in the last page.   閱讀全文
    posted @ 2009-03-26 09:47 Justin Chen 閱讀(4699) | 評論 (11)編輯 收藏
         摘要: JDBC has been used as the major Java Database Access technique for long time. However, JDBC access always need try-catch block and repeated JDBC codes, such as connection, statement and resultset. And recently, JDK 6.0 already released a simplified JDBC access approach. This article will introduce a similar and very simple design to reduce most of JDBC codes. You don't have to repeat the traditional JDBC codes template agan and again.
      閱讀全文
    posted @ 2009-03-20 10:07 Justin Chen 閱讀(2009) | 評論 (2)編輯 收藏
         摘要: This article is trying to summarize what' the JVM GC log and how can we use it to analyse memory issues.   閱讀全文
    posted @ 2009-03-19 22:27 Justin Chen 閱讀(8503) | 評論 (2)編輯 收藏
         摘要: This article introduces three tools: P6Spy, IronTrackSQL and SQL Profiler (NOT SQL Server Profiler). Using these tools are very easy to log all SQL statements and show the detailed statistics results.  閱讀全文
    posted @ 2009-03-14 21:06 Justin Chen 閱讀(3547) | 評論 (0)編輯 收藏
         摘要: An introduction on JTracert - Runtime Sequence Diagram Generator Tool   閱讀全文
    posted @ 2009-03-11 22:42 Justin Chen 閱讀(1757) | 評論 (0)編輯 收藏
         摘要: In summary, we always met the performance result stability issue during performance testing. This article tries to explain why an java application will perform differently at different time, there are too many factors impacting this, and how can we get a more trustable results. This article is a first try to explain this topic, i hope more and more discussion will make us clearer.   閱讀全文
    posted @ 2009-03-09 23:25 Justin Chen 閱讀(1532) | 評論 (1)編輯 收藏
         摘要: Open Source Reporting Tools in Java  閱讀全文
    posted @ 2009-03-01 22:28 Justin Chen 閱讀(680) | 評論 (0)編輯 收藏
         摘要: Profiling Java Performance With Perf4j  閱讀全文
    posted @ 2009-02-22 22:00 Justin Chen 閱讀(2062) | 評論 (0)編輯 收藏
         摘要: This article will have a simple introduction on new tool – Eclipse Memory Analyzer (previously called SAP memory analyzer) and how to use this tool to find some interesting memory issues.  閱讀全文
    posted @ 2009-02-22 21:29 Justin Chen 閱讀(5766) | 評論 (0)編輯 收藏
         摘要: This message introduced the major JVM-Level problems on Java Development, such as Out of Memeory, Thread Lock etc.  閱讀全文
    posted @ 2009-01-08 22:15 Justin Chen 閱讀(3288) | 評論 (3)編輯 收藏
         摘要: Recently, there are lots of discussion regarding to QA bottleneck in our release plan, or lack of communication between Dev and QA, i’d like to share my little experiences from my previous experiences. This article describes three major mindset changes and some practical skills to help the team achieve these principles   閱讀全文
    posted @ 2008-12-10 13:39 Justin Chen 閱讀(1418) | 評論 (1)編輯 收藏
         摘要: An introduction to Java Bean Validation Framework and How to use Spring Bean Validation Framework without Spring MVC.   閱讀全文
    posted @ 2008-12-01 11:48 Justin Chen 閱讀(4800) | 評論 (1)編輯 收藏
    主站蜘蛛池模板: 午夜老司机免费视频| 久久99九九国产免费看小说| 毛片免费在线观看网站| 亚洲国产精品久久久久婷婷软件| 黄床大片免费30分钟国产精品| 亚洲日本一区二区一本一道| 日日摸夜夜添夜夜免费视频| 免费吃奶摸下激烈视频| 夜夜爽妓女8888视频免费观看| 亚洲视频在线一区二区| 中国国语毛片免费观看视频| 亚洲中文字幕无码中文字在线| 91在线视频免费观看| 久久久久亚洲AV成人无码| 免费不卡在线观看AV| 亚洲免费在线观看视频| 思思99re66在线精品免费观看| 亚洲男同gay片| 大胆亚洲人体视频| 国产精品视频全国免费观看| 亚洲色成人网站WWW永久| 桃子视频在线观看高清免费视频| 亚洲图片激情小说| 免费又黄又硬又爽大片| 日本免费人成视频在线观看| 国产精品亚洲精品| 亚洲精品无码99在线观看| 中文字幕久精品免费视频 | 亚洲精品无码专区在线在线播放| a级男女仿爱免费视频| 亚洲欧洲国产综合| 波多野结衣中文一区二区免费 | 久久亚洲国产精品五月天婷| 四虎影视成人永久免费观看视频| 亚洲伊人久久大香线蕉AV| 国产亚洲人成A在线V网站| 国产a视频精品免费观看| 一级做a爰片久久毛片免费陪| 亚洲高清在线观看| 国产乱色精品成人免费视频| 99精品视频在线视频免费观看|