Python asyncioC++ knowledgeBinding tools like pybind11FoundationDB client API
新手友好度1-100 的估计分数,表示该议题对首次贡献者的友好程度。
25
研究方向
Review the issue comments (#208) for prior discussion on desired asyncio support. Examine the existing Python bindings in the FoundationDB repository (e.g., 'bindings/python') to understand the current sync API. Study the C++ client library (e.g., 'fdb c.h') to identify the async API that needs wrapping. Consider using Python's asyncio event loop integration patterns, such as 'loop.add reader' or 'asyncio.Future', to bridge with FoundationDB's callback based model.