发现优质的 AI Agent 技能
聚合 Claude Skills、LangChain、AutoGPT 等优质资源,助力开发者快速构建智能应用
One user blocks all other users!
queue.enqueue(process_task, task) ``` **Correct (per-user limits with partitioning):**
Every worker processes both queues
if __name__ == "__main__": DBOS(config=config) DBOS.launch() ``` **Correct (workers listen to specific queues):**
Uses lots of memory
pass ``` **Correct (worker concurrency):**
Regular sleep is lost on restart!
time.sleep(delay_seconds) run_task(task) ``` **Correct (durable sleep):**
Client waits for entire response
response = call_llm(prompt) return response ``` **Correct (streaming results):**
Polling is inefficient and not durable
while True: status = check_payment_status() if status == "paid": break time.sleep(1)
Connection leaked - no destroy()!
``` **Correct (with cleanup):**
Section Definitions
This file defines the rule categories for DBOS Python best practices. Rules are automatically assigned to sections based on their filename prefix.
dbos-python
> **Note:** `CLAUDE.md` is a symlink to this file.
test setup
来自 sickn33/antigravity-awesome-skills 技能
step retries
来自 sickn33/antigravity-awesome-skills 技能
step concurrency
来自 sickn33/antigravity-awesome-skills 技能