We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
배경: 앞으로 많은 양의 데이터를 크롤링해야한다. 속도와 전력소비가 적은것이 중요하다.
문제점: 파이썬으로 진행했던 프로젝트가 os 라이브러리까지 사용해서 매우 느리다.
Lighthouse를 빠르게 실행시키는 프로세스로 업그레이드 필요.
주장1:
해결방법1:
주장2:
I/O 가 2번입니다. 해결방법2: Node API를 통해 Lighthouse를 실행하면, 결과를 직접 변수(메모리)로 받을 수 있습니다. 그럼 JSON을 디스크에 쓰지 않고, 곧장 필요한 부분만 추출해 DB로 전송 가능합니다.
구체적인 시나리오
The text was updated successfully, but these errors were encountered:
No branches or pull requests
배경:
앞으로 많은 양의 데이터를 크롤링해야한다. 속도와 전력소비가 적은것이 중요하다.
문제점:
파이썬으로 진행했던 프로젝트가 os 라이브러리까지 사용해서 매우 느리다.
Lighthouse를 빠르게 실행시키는 프로세스로 업그레이드 필요.
주장1:
해결방법1:
주장2:
I/O 가 2번입니다.
해결방법2:
Node API를 통해 Lighthouse를 실행하면, 결과를 직접 변수(메모리)로 받을 수 있습니다. 그럼 JSON을 디스크에 쓰지 않고, 곧장 필요한 부분만 추출해 DB로 전송 가능합니다.
구체적인 시나리오
The text was updated successfully, but these errors were encountered: