栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > Java面试题

Can you suggest that what are points to be considered while doing Performance Tuning in Java?

Java面试题 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Can you suggest that what are points to be considered while doing Performance Tuning in Java?

* Keep an eye on Threads if you are into an Multi-Threaded application, never create threads at your will, Implement a Thread-Pool instead.
* Garbage Collector runs whenever Used Memory reaches Heap-size so you don have to worry about it, but do not try to call GC on your own it will produce system idle time. One GC call could eat up around 3 sec of your System Time.
* I/O operations as mentioned above, is very dangerous. Always keep checking them, use Buffered Streams than normal Streams.
* DB call is also an I/O operation. Write Strored Procedures to encapusulate almost all your DB related Business Logic and reduce Application Cycle between DB & your Objects for a Single Request.
* Create Appropriate Indexes for your Tables, this will reduce the time taken to Fetch the data fro the tables.
* Tune your SQL statements approp. for ex. select * from employee where citizenship = ‘indian’ and firstname = ‘david’
will outperform
select * from employee where firstname = ‘david’ and citizenship = ‘indian’
* Keep your object lifecycle clean, de-reference whenever you are done with a particular object. use static with caution will not only eat memory also will cause some funny sync. issues

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/264677.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号