Meteor(24)
-
오라클 DB Link 속도 저하 문제
DB Link 속도 저하의 문제 소결론네트워크 퍼포먼스를 고려하여 설계하면 유용한 네트워크 연결된 DB구조로 잘 활용할 수 있다~~ ---------------------------------------------------------------▣ 속도에 영향을 주는 요소1. 네트워크 퍼포먼스2. 읽기 성능 문제 - select 쿼리 성능3. 쓰기 성능 문제 - insert 시에 발생하는 redo log 쓰기에 따른 문제 ▣ 속도개선을 위한 방안.네트워크 퍼포먼스에 대해서는 패스.읽기 성능 문제 : 힌트를 통해 읽기성능 해결 - parallel (병렬처리), full (full Scan) 힌트 사용비추 XX - 쓰기 성능 문제 : redo log 쓰기를 무시하는 append 옵션 사용 - append (..
2017.01.29 -
Microservices with Meteor
http://justmeteor.com/blog/microservices-with-meteor/---------Microservices with MeteorIn this blog post we’ll talk about the microservices architecture and how you can build such an architecture with Meteor.At the end of this blog post you should have a solid understanding why microservices are used today and if your project should use them as well.Let’s startWhat are microservices?Let’s get ba..
2016.09.29 -
parsing-huge-logfiles-in-node-js-read-in-line-by-line
http://stackoverflow.com/questions/16010915/parsing-huge-logfiles-in-node-js-read-in-line-by-line var fs = require('fs') , util = require('util') , stream = require('stream') , es = require('event-stream'); var lineNr = 0; var s = fs.createReadStream('very-large-file.csv') .pipe(es.split()) .pipe(es.mapSync(function(line){ // pause the readstream s.pause(); lineNr += 1; // process line here and ..
2016.09.23 -
meteor SSL 설정(HTTPS(nginx) -> HTTP(meteor)) 진행중...
meteor SSL 설정(HTTPS(nginx) -> HTTP(meteor)) 진행중... https://guide.meteor.com/security.html#Setting_up_SSL안내를 보고 https://www.digitalocean.com/community/tutorials/how-to-deploy-a-meteor-js-application-on-ubuntu-14-04-with-nginx을 설정하였으나... 미티어에서 마구 에러를 발생 시킴...Exception in setInterval callback: ReferenceError: Random is not defined at https://localhost/app/app.js?hash=350d9580bcdd6e837ec530bc837e992..
2016.08.30 -
웹사이트 정보를 확인하는 유용한 정보
http://webnote.pe.kr/featured/best-online-tools-for-webmasters-know-everything-about-website/ just-ping.comJust Ping은 해당 웹 사이트가 외국에서 액세스 할 수 있는지를 알아줍니다. 다른 Ping 송신 서비스가 고작 2 ~ 3 개국에서 밖에 Ping을 보내주지 않는 반면,이 서비스는 터키, 이집트, 중국 등 30 개국 이상의 국가에서 Ping을 보내줍니다. 만일 어떤 국가에서 Ping의 결과가 “100 % Packet Loss”(100 % 패킷 손실)라면, 아마도 그 나라에서는 접속 할 수 없습니다. who.is웹 사이트 소유자의 연락처 (메일 주소 또는 전화 번호)를 알고 싶다면 whois 검색 사이트가 도움이 ..
2016.07.23 -
Meteor installation failed on Windows 10
미티어 윈도우즈 10에서 설치. meteor 실행이 않된다. 어디에 설치된지도 모르겠고... Meteor installation failed on Windows 10 https://github.com/meteor/meteor/issues/4931 아래와 같은 글이 눈에 들어온다. I installed on win 10 successfully, it did require a restart before meteor command was available. Does win 8.1+ handle changes in path different than before? .meteor folder should be in the \AppData\Local\.meteor folder of your user, not in ..
2016.03.18