All Articles

TIL&TEL 21.08.16~21.08.22

TIL( Today I Learned)

21-08-17 화

  • Noti 달기

21-08-18 수

  • Sql 수정

21-08-19 목

  • SQL 수정
  • Python 동시처리 비교

    • concurrent

      • ProcessPoolExecutor
      • ThreadPoolExecutor
    • asycnio
  • asyncic > ThreadPoolExecutor > ProcessPoolExecutor

21-08-20 금

  • 프로그램 동작 계획
  • 기획 공유

TEL (Trial and Error Log)

21-08-19

  • ERROR: fatal: ‘origin’ does not appear to be a git repository // fatal: Could not read from remote repository.

    • SITUATION: git push
    • REASON: intelliJ git remote 삭제
    • SOLUTION:

      • git add remote
  • ERROR: invalid LOC header (bad signature)

    • SITUATION: Concurren futures, ProcessPoolExecutor
    • REASON:

      • Class 실행 Scope 바깥에서 가져다가 부르면 안된다,
      • 독립 함수로서 동작할 수 있도록 해야 한다.
    • SOLUTION:

      • 필요 class를 직접 initializing 한다.
  • ERROR: Jvm already start

    • SITUATION: ThreadPoolExecutor tokenizing
    • REASON:

      • 전달 func 내에 Okt() 가 있으면, 중복실행으로 간주 하고 에러를 내뱉는다.
    • SOLUTION:

      • 초기화된객체를 사용해 진행을 하도록 한다