Java내용은 아닐거라고 제목에서 알 수 있습니다.
Microsoft가 붙은거로 봐서는 마소의 것(?)이라는 것을 알 수 있으실 겁니다.
내용이 좋네요.. ^^


저작자 표시
Tag // Architecture

restlet 번역자료..

from data 2010/07/22 15:35
decoder님의 블로그에 포스팅된 내용입니다.
restlet에 대한 소개와 FAQ에 대한 번역자료입니다..

Restlet 소개
Restlet - General FAQ
저작자 표시
ETRI에 올라와 있는 데이타 입니다.
아래 링크를 통해서, 원본 논문집에 대한 내용과 데이타를 다운로드 받을 수 있습니다.
클라우드 컴퓨팅을 위한 분산 파일 시스템 기술 동향


저작자 표시
2006년도에 SUN에서 나온 Java VM의 Memory Management에 대한 문서입니다.
저작자 표시

soap vs rest 비교자료

2010/05/26 15:28
보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

Scalable IO in Java

from data 2010/03/09 17:53
Doug Lea 교수님께서 강의를 위해서 만들어놓은 자료입니다. 어디에서 다운로드를 받았는지 기억이 안나서 업로드 합니다.

PDF 자료를 보시면,  POSA2의 Reactor 패턴을 이용해서 이벤트를 디스패칭하는 내용을 기본으로, 약 3가지의 모델을 제시하고 있고, 그 중에서 Using Multiple Reactors 슬라이드 편이 가장 성능이 좋을거 같습니다.



위와 같은 모습의 서버 프레임웍을 조만간 공개할 예정입니다.
혹시, nio 기반의 소켓서버를 개발하시는 분들에게 도움이 되었으면 하네요.. ^^
아 최근에 나눔글꼴 쓰고 있는데.. 좋넹.. ^^;;
글꼴의 스크린 샷은 요기를 참고하세요.. ^^


Tag // font, naver

JDK 1.6 한글 문서(html)

from data 2008/07/28 13:23
http://xrath.com 에서 번역한 내용입니다.

Java SE 6 한글 문서 : http://xrath.com/javase/ko/6/docs/ko/
Java SE 6 한글 문서 다운로드 : http://xrath.com/files/jdk-6-docs-ko.zip

자세한 내용은 http://xrath.com/blog/entry/697 를 참고하세요. ^^

'data' 카테고리의 다른 글

Scalable IO in Java  (0) 2010/03/09
네이버 나눔글꼴 좋네요.. ^^  (0) 2010/01/28
JDK 1.6 한글 문서(html)  (0) 2008/07/28
Brian Goetz's Java Concurrency in Practice Interview  (0) 2008/07/28
JDK 1.5 한글 문서(CHM)  (0) 2008/05/07
Tag // java, java api
Brian Goetz는 Sun Java evangelist 입니다.
아래 인터뷰는 writing faster-performing Java applications  에 초점이 맞춰줘 있습니다.
In the interview, Goetz gave this advice on how to write faster-performing Java code:
 Often, the way to write fast code in Java applications is to write dumb code?code that is straightforward, clean, and follows the most obvious object-oriented principles.

    This has to do with the nature of dynamic compilers, which are big pattern-matching engines. Because compilers are written by humans who have schedules and time budgets, the compiler developers focus their efforts on the most common code patterns, because that's where they get the most leverage. So if you write code using straightforward object-oriented principles, you'll get better compiler optimization than if you write gnarly, hacked-up, bit-banging code that looks really clever but that the compiler can't optimize effectively.

    So clean, dumb code often runs faster than really clever code, contrary to what developing in C might have taught us. In C, clever source code turns into the expected idiom at the machine-code level, but it doesn't work that way in Java applications...

    If I could wave a magic wand and send out one message about Java programming, it would be this: Trust the JVM. It's smarter than you think. Stop trying to outwit or outsmart it. Tell it what you want, and it will do its damnedest to make your application run as fast as it can.
View  : http://javapolis.libsyn.com/index.php?post_id=182708
DownLoad : http://media.libsyn.com/media/javapolis/Brian_Goetz_JavaPolis_2006_Interview.mp3

'data' 카테고리의 다른 글

Scalable IO in Java  (0) 2010/03/09
네이버 나눔글꼴 좋네요.. ^^  (0) 2010/01/28
JDK 1.6 한글 문서(html)  (0) 2008/07/28
Brian Goetz's Java Concurrency in Practice Interview  (0) 2008/07/28
JDK 1.5 한글 문서(CHM)  (0) 2008/05/07

JDK 1.5 한글 문서(CHM)

from data 2008/05/07 10:30
강혜원님께서 번역을 하셨다고 하네요.. ^^

다운로드 주소 : http://www.okjsp.pe.kr/seq/88948 
링크 주소 : http://www.bonamis.net/jdk1.5/docs/ko/api/index.html

'data' 카테고리의 다른 글

Scalable IO in Java  (0) 2010/03/09
네이버 나눔글꼴 좋네요.. ^^  (0) 2010/01/28
JDK 1.6 한글 문서(html)  (0) 2008/07/28
Brian Goetz's Java Concurrency in Practice Interview  (0) 2008/07/28
JDK 1.5 한글 문서(CHM)  (0) 2008/05/07
Tag // java, java api