0a7402b327
study_memo_cards 추출 파이프라인 + 버전키 폴러 + needs_review 컬럼. 운영 SR 코드(session_finalize/quiz_selection) 무수정.
- migrations 287~298: study_memo_cards/_evidence/_jobs/_progress(P1 휴면)·study_reminders·study_topics.focused_at·study_questions needs_review 3컬럼. dedup PARTIAL UNIQUE(deleted_at IS NULL).
- 워커: in-process RAG gather → MLX {cards} → 카드 가드(정량=evidence 원문 등장·cue/cloze 누출·dedup) → supersede 구버전 retire → append. 별 consumer 로 기존 study_queue 격리.
- 폴러 study_card_enqueue: 버전키 NOT EXISTS(source_version) 멱등 + ai_explanation_generated_at NOT NULL 가드 + per-poll LIMIT(thundering-herd).
- 검증: 실 prod 스키마 덤프 위 12 마이그 적용 OK + dedup/supersede/active-unique 기능 7/7 PASS + 정규화 util 15/15.
plan: PKM plans/2026-06-05-study-memo-card-p1-plan.html
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
519 B
SQL
10 lines
519 B
SQL
-- 297_study_questions_needs_review_idx.sql
|
|
-- needs_review 큐 뷰(GET /study-questions?needs_review=true) + count 용 부분 인덱스.
|
|
-- WHERE 술어(deleted_at IS NULL AND needs_review)는 큐 뷰 쿼리 WHERE 와 글자 단위로
|
|
-- 일치해야 partial index 가 선택된다 (HR-5 쿼리와 정합 필수).
|
|
-- soft-delete 행 제외(deleted_at IS NULL 합류).
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_study_questions_needs_review
|
|
ON study_questions (study_topic_id)
|
|
WHERE deleted_at IS NULL AND needs_review;
|