Added README file about async support.

This commit is contained in:
Federico Di Gregorio 2009-10-04 11:33:35 +02:00
parent 0fc94be496
commit 1c9fa1355d
2 changed files with 11 additions and 2 deletions

8
README.async Normal file
View File

@ -0,0 +1,8 @@
Asynchronous support in psycopg
*******************************
The support for asynchronous queries in psycopg is only half-backed and
won't work unless a good deal of time is put into fixing bugs. Currently
I (the author) have no need for asycnhronous queries but patches are
welcome. Also welcome are short tests that show how the async path fails
(miserably) so that I can at least fix obvious problems.

View File

@ -139,6 +139,7 @@
<None Include="psycopg\typecast_basic.c.old" /> <None Include="psycopg\typecast_basic.c.old" />
<None Include="sandbox\test_isready_connection_closed.py" /> <None Include="sandbox\test_isready_connection_closed.py" />
<None Include="psycopg\adapter_pfloat.h" /> <None Include="psycopg\adapter_pfloat.h" />
<None Include="README.async" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="psycopg\adapter_asis.c" /> <Compile Include="psycopg\adapter_asis.c" />
@ -175,8 +176,8 @@
<ChangeLogPolicy UpdateMode="Nearest" VcsIntegration="None" inheritsSet="Mono"> <ChangeLogPolicy UpdateMode="Nearest" VcsIntegration="None" inheritsSet="Mono">
<MessageStyle FileSeparator=", " LineAlign="0" /> <MessageStyle FileSeparator=", " LineAlign="0" />
</ChangeLogPolicy> </ChangeLogPolicy>
<TextStylePolicy FileWidth="144" RemoveTrailingWhitespace="True" inheritsSet="VisualStudio" inheritsScope="text/plain" /> <TextStylePolicy FileWidth="144" NoTabsAfterNonTabs="False" inheritsSet="Mono" inheritsScope="text/x-python" />
<TextStylePolicy NoTabsAfterNonTabs="True" RemoveTrailingWhitespace="True" inheritsSet="Mono" inheritsScope="text/plain" scope="text/x-changelog" /> <TextStylePolicy TabWidth="8" TabsToSpaces="False" inheritsSet="Mono" inheritsScope="text/x-python" scope="text/x-changelog" />
</Policies> </Policies>
</Properties> </Properties>
</MonoDevelop> </MonoDevelop>