'전체 글'에 해당되는 글 93건

when you are comparing string from DB and Excel or CSV or .. file,

then, Just try to change file encode type to UTF-8.

or

try to match encoding type between two strings.

블로그 이미지

시간을 거스르는자

,

JIT vs Interpreter

분류없음 2016. 10. 25. 19:33

http://www.differencebetween.net/technology/difference-between-jit-and-interpreter/

JIT방식은 그 코드 block이 사용(호출)될때 machine code로 변환해서 사용하고 이미 한번 machine code로 변환한것은 캐싱해두었다가 변환하는 과정없이 실행한다.

Script언어의 Interpreter방식은 미리 컴파일된 함수들을 가지고 있고, code를 line by line으로 해석해서 이 함수들에게 던져준다. 

'분류없음' 카테고리의 다른 글

[cpp] std::move는 단지 캐스팅일 뿐이라고?  (0) 2017.02.08
Same string but different length  (0) 2016.10.28
git pushed merge cancel  (0) 2015.04.13
[encoding] javascript write to csv  (0) 2015.04.11
APNS python failure and feedback  (0) 2015.04.06
블로그 이미지

시간을 거스르는자

,

zscore list copy

redis 2016. 10. 12. 17:48

#zscore, zrevrange

https://stackoverflow.com/questions/9282822/is-it-possible-to-duplicate-a-redis-sorted-set#

http://redis.io/commands/zunionstore

zadd foo 1 a
zadd foo 2 b
zunionstore bar 1 foo
zrange bar 0 -1
1) "a" 
2) "b"


'redis' 카테고리의 다른 글

redis sentinel  (0) 2015.11.30
[Redis] HSET vs SET  (0) 2015.01.09
블로그 이미지

시간을 거스르는자

,