feat: 유튜브 검색 정렬 기능 추가 및 인피니티 스크롤 개선

- 검색 정렬 옵션 추가 (최신순, 조회수순, 관련성순)
- 기본 정렬을 최신순으로 변경
- 인피니티 스크롤 최적화 (첫 20개 빠르게 로드, 스크롤 시 추가)
- extract_flat 파라미터 추가로 검색 성능 개선
- 서버 캐시로 중복 요청 방지
- UI 개선: 검색 결과 종료 메시지 추가
- 버전 업데이트: 0.1.2 → 0.2.0
This commit is contained in:
2026-01-26 16:47:23 +09:00
parent 6e747abf86
commit def4e9eeb8
4 changed files with 96 additions and 1 deletions

12
flower.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# GDS-DViewer Flower Dashboard Startup Script
# This script bypasses main.py to avoid gevent monkey-patch conflicts (infinite loading).
cd /Volumes/WD/Users/Work/python/flaskfarm
# Kill existing processes
pkill -f flower
# Execute integrated startup command
/Users/yommi/.pyenv/versions/FF_3.10/bin/python3 -c "import sys, os; sys.path.append(os.path.join(os.getcwd(), 'lib')); sys.argv=['celery', '--config_filepath=data/config_mac.yaml', '--running_type=local']; from framework import initiaize; celery=initiaize().celery; celery.start(['flower', '--address=0.0.0.0', '--port=5556'])"