- 18 Aug, 2016 2 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
-
- 14 Aug, 2016 2 commits
-
-
Jim Fulton authored
Zeo 5
-
Jim Fulton authored
Conflicts: .travis.yml CHANGES.rst setup.py src/ZEO/StorageServer.py src/ZEO/cache.py
-
- 13 Aug, 2016 2 commits
-
-
Jim Fulton authored
Asyncio-based ZEO client and server (2)
-
Jim Fulton authored
Got uvloop working with the mtacceptor
-
- 11 Aug, 2016 1 commit
-
-
Jim Fulton authored
-
- 10 Aug, 2016 1 commit
-
-
Jim Fulton authored
thanks to the new connect_accepted_socket API. Abstracted the code that supports using asyncio vs trollius vs uvloop
-
- 09 Aug, 2016 3 commits
-
-
Jim Fulton authored
Use uvloop in the single-threaded server
-
Jim Fulton authored
When creating an ad hoc server, a log file isn't created by default
-
Jim Fulton authored
To accomplish this, it was necessary to rearrange the tests so that tests that ran servers in threads rather than using multiprocessing into their own layer. This is due to a bug currently in uvloop that prevents using running uvloop servers in a process and in subprocesses created with multiprocessing: https://github.com/MagicStack/uvloop/issues/39 To run the tests with uvloop installed, it's necessary to use the ``-j`` option to run layers in separate processes.
-
- 08 Aug, 2016 11 commits
-
-
Jim Fulton authored
default. You must pass a log option specifying a log file name.
-
Jim Fulton authored
Uvloop
-
Jim Fulton authored
-
Jim Fulton authored
-
Jim Fulton authored
uvloop is a bit faster than the standard asyncion event loop. Unfortunately, there's an issue with the ZEO tests and using uvloop in the ZEO server: https://github.com/MagicStack/uvloop/issues/39 Fortunately, most of the performamce benefits of using uvloop seems to be in the client. For now, we'll just use ivloop on the client side, as the incremental effort of using it in the server aren't worth futher wrestling with the tests. (I spent quite a bit of time just narrowing down the cause of the test issue.) With this PR, if uvloop can be imported, it will be used for the client. (uvloop requires Python 3.5 or later and doesn't support Windows.)
-
Jim Fulton authored
-
Jim Fulton authored
-
Jim Fulton authored
Dont pickle errors
-
Jim Fulton authored
-
Jim Fulton authored
Don't send errors as pickles. Send error names and class dict or arguments. This is a step toward eliminating instance pickles from the ZEO protocol. This is much messier than I'd like it to be because of the way both python and ZEO handle exceptions.
-
Jim Fulton authored
Server sync
-
- 05 Aug, 2016 11 commits
-
-
Jim Fulton authored
-
Jim Fulton authored
-
Jim Fulton authored
Mainly to have a backup cache for new branches (although this won't help that much because of the differences between ZEO4 and ZEO5, still... Also stop testing on mac. I do that enough already. :) Also, use a simpler leaner install script.
-
Jim Fulton authored
try caching again, off on a separate branch.
-
Jim Fulton authored
-
Jim Fulton authored
-
Jim Fulton authored
-
Jim Fulton authored
Conflicts: CHANGES.rst
-
Jim Fulton authored
- The ZEO server register method now returns the storage last transaction
-
Jim Fulton authored
Conflicts: CHANGES.rst
-
Jim Fulton authored
Client disconnect errors are now transient errors. Apparently, travis doesn't want to test this branch. :(
-
- 04 Aug, 2016 7 commits
-
-
Jim Fulton authored
And slightly with pip installing buildout (rather than bootstrapping).
-
Jim Fulton authored
-
Jim Fulton authored
They're annoying. :)
-
Jim Fulton authored
transaction, allowing the client to avoid an extra round trip during cache verification.
-
Jim Fulton authored
-
Jim Fulton authored
server_sync constructor argument to force a server round trip at the beginning of transactions to wait for any outstanding invalidations at the start of the transaction to be delivered.
-
Jim Fulton authored
-