django-parting
django-parting copied to clipboard
django-parting helps you partition tables with large amounts of data.
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.