murmurhash VS psycopg2cffi

Compare murmurhash vs psycopg2cffi and see what are their differences.

murmurhash

💥 Cython bindings for MurmurHash2 (by explosion)

psycopg2cffi

Port to cffi with some speed improvements (by chtd)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
murmurhash psycopg2cffi
2 2
42 177
- 1.1%
5.0 0.0
6 months ago almost 2 years ago
C++ Python
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

murmurhash

Posts with mentions or reviews of murmurhash. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-31.
  • Is anyone using PyPy for real work?
    13 projects | news.ycombinator.com | 31 Jul 2023
    If you have very large dicts, you might find this hash table I wrote for spaCy helpful: https://github.com/explosion/preshed . You need to key the data with 64-bit keys. We use this wrapper around murmurhash for it: https://github.com/explosion/murmurhash

    There's no docs so obviously this might not be for you. But the software does work, and is efficient. It's been executed many many millions of times now.

  • Data Ingestion - Build Your Own "Map Reduce"?
    4 projects | dev.to | 24 Dec 2021
    Some notes: We don't need Sha256 and not evey base64; nothing will happen if keys will not distribute very equally. we could take MMH3; googling "python murmurhash" gives 2 interesting results; and since both use the same cpp code, let's take the one with most stars Other options would be to simply do (% NUM_SHARDS) or even shift right (however must have shards count == power of 2).

psycopg2cffi

Posts with mentions or reviews of psycopg2cffi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-31.
  • Is anyone using PyPy for real work?
    13 projects | news.ycombinator.com | 31 Jul 2023
    The only compatibility issue I've run into is database drivers.

    For PostgreSQL, psycopg2 is not supported. psycopg2cffi is largely unmaintained, and the 2.9.0 version in PyPI lacks some newer features of psycopg2: the `psycopg2.sql` module and empty result sets raise a RuntimeError in Python 3.7+. The latest commit in on Github does have these changes [1]. Psycopg 3 [2] and pg8000 [3] (as user tlocke mentioned elsewhere) are viable alternates provided you aren't stuck with older versions of PostgreSQL. I'm going to continue to use psycopg2cffi until I can upgrade an old PostgreSQL 9.4 database.

    For Microsoft SQL Server, pymssql does not support PyPy [4]. It's under new maintainership so it might gain support in the future. pypyodbc hasn't had any activity since 2022, and no new PyPI release since 2021 [5]. The datatypes returned can differ between libodbc1 versions. On Ubuntu 18.04 in particular: empty string columns are returned as a single space, integer columns are returned as a Decimal. Also, if you encounter a mysterious HY010 error ("Function sequence error"), you may need to upgrade libodbc1 to v2.3.7+ from v2.3.4 using the Microsoft repos.

    [1]: https://github.com/chtd/psycopg2cffi

  • Microsoft is hiring, looking to speed up cpython
    4 projects | /r/Python | 10 Jun 2021
    From time to time, I use pgcopy coupled with psycopg2cffi to feed large volumes of data processed by custom parsers written in Python for several formats. The whole process is 4-5x faster with PyPy.

What are some alternatives?

When comparing murmurhash and psycopg2cffi you can also consider the following projects:

mmh3 - Python extension for MurmurHash (MurmurHash3), a set of fast and robust hash functions.

pgcopy - fast data loading with binary copy

mrjob - Run MapReduce jobs on Hadoop or Amazon Web Services

hpy - HPy: a better API for Python

preshed - 💥 Cython hash tables that assume keys are pre-hashed

python-mysql-replication - Pure Python Implementation of MySQL replication protocol build on top of PyMYSQL

sparc-curation - code and files for SPARC curation workflows

MurMurHash - This little tool is to calculate a MurmurHash value of a favicon to hunt phishing websites on the Shodan platform.

Pyjion - Pyjion - A JIT for Python based upon CoreCLR