Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- gradle
- kafka streams
- 한빛미디어
- kafka interactive query
- statestore
- Kafka
- enablekafkastreams
- aws
- avo
- play framework
- Spring
- spring-cloud-stream
- spring-kafka
- Elk
- 카프카
- kafkastreams
- scala 2.10
- schema registry
- coursera
- springboot
- RabbitMQ
- scala
- Slick
- spring-batch
- reactive
- confluent
- Elasticsearch
- Logstash
- 플레이 프레임워크
- kafkastream
Archives
- Today
- Total
목록Lazy (1)
b
scala의 lazy 비용
lazy val x = 솰라솰라... 단순히 늦은/지연 연산일 줄만 알았다... testclass lazyval { lazy val x = 5 }를 scalac로 컴파일하고 다시 디컴파일 해서 내용을 보면public class lazyval{ private int x$lzycompute() { synchronized(this) { if(!bitmap$0) { x = 5; bitmap$0 = true; } BoxedUnit _tmp = BoxedUnit.UNIT; } return x; } public int x() { return bitmap$0 ? x : x$lzycompute(); } public lazyval() { } private int x; private volatile boolean bitma..
language/scala
2014. 10. 21. 17:25