-
Notifications
You must be signed in to change notification settings - Fork 57
Comparing changes
Open a pull request
base repository: jaysonsantos/python-binary-memcached
base: v0.30.1
head repository: jaysonsantos/python-binary-memcached
compare: v0.31.0
- 10 commits
- 16 files changed
- 4 contributors
Commits on Oct 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f44cbbf - Browse repository at this point
Copy the full SHA f44cbbfView commit details
Commits on Oct 9, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 1fcf030 - Browse repository at this point
Copy the full SHA 1fcf030View commit details -
Merge pull request #242 from jaysonsantos/github-actions
chore: move CI to GH
Configuration menu - View commit details
-
Copy full SHA for fb2e021 - Browse repository at this point
Copy the full SHA fb2e021View commit details -
Bump pygments from 2.2.0 to 2.7.4 in /docs
Bumps [pygments](https://github.com/pygments/pygments) from 2.2.0 to 2.7.4. - [Release notes](https://github.com/pygments/pygments/releases) - [Changelog](https://github.com/pygments/pygments/blob/master/CHANGES) - [Commits](pygments/pygments@2.2.0...2.7.4) Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fb3d307 - Browse repository at this point
Copy the full SHA fb3d307View commit details
Commits on Oct 10, 2021
-
Merge pull request #239 from jaysonsantos/dependabot/pip/docs/pygment…
…s-2.7.4 Bump pygments from 2.2.0 to 2.7.4 in /docs
Configuration menu - View commit details
-
Copy full SHA for bf56314 - Browse repository at this point
Copy the full SHA bf56314View commit details
Commits on Oct 15, 2021
-
feat: Expose incr/decr
default
andtime
protocol arguments in cli……ent class (#243) The protocol implements `default` and `time` arguments, but those are not exposed in the client class implementation. This adds those fields.
Configuration menu - View commit details
-
Copy full SHA for 41ed613 - Browse repository at this point
Copy the full SHA 41ed613View commit details
Commits on Dec 28, 2021
-
refactor: Use bytearrays for building up bytes for I/O. (#245)
Bytes are immutable in python, which means that repeatedly appending to them is _quadratic_ in time. That is, we would like and expect that deleting 10k objects 10 times would take about as long as deleting 100k, but because we repeatedly concatenate to a bytes object in the loop, they are not: timeit.timeit(lambda: server.delete_multi(["foo"]*10000),number=10) # 0.5087270829999966 timeit.timeit(lambda: server.delete_multi(["foo"]*100000),number=1) # 10.650619775999985 Switch to using `bytearray` in all places which handle variable numbers of bytes. After this change: timeit.timeit(lambda: server.delete_multi(["foo"]*10000),number=10) # 0.1197161969999998 timeit.timeit(lambda: server.delete_multi(["foo"]*100000),number=1) # 0.1269589350000011
Configuration menu - View commit details
-
Copy full SHA for f3fbae5 - Browse repository at this point
Copy the full SHA f3fbae5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 84d940d - Browse repository at this point
Copy the full SHA 84d940dView commit details -
Configuration menu - View commit details
-
Copy full SHA for faf5da4 - Browse repository at this point
Copy the full SHA faf5da4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8375a4 - Browse repository at this point
Copy the full SHA b8375a4View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.30.1...v0.31.0