django-parting icon indicating copy to clipboard operation
django-parting copied to clipboard

django-parting helps you partition tables with large amounts of data.

Results 3 django-parting issues
Sort by recently updated
recently updated
newest added

As you have given a save() example. ``` partition_key = _key_for_dt(tweet_data['created_at']) partition = Tweet.partitions.get_partition(partition_key) tweet = partition(**tweet_data) tweet.save() ``` I'm wonder that is how does the following code execute: `tweet...

The `ensure_partition` command invokes syncdb directly to create its tables. This can unexpectedly sync other tables from other apps to the database if they're not already there - including those...

Travis builds against Python 3.3 are currently failing.