Glyn Jackson

Results 24 comments of Glyn Jackson

I maybe late to the party, but I ran into the same error which is not Django Nose specific. The error is related to the order of the installed apps...

@ryanisnan @DavidJFelix I got this to work with both `has_object_permission` and `has_permission` unless I'm missing something here... i.e. Don't do this... ``` permission_classes = [And(Or(TokenHasReadWriteScope, SecretKeyToken, permissions.IsAdminUser), IsOwnerOrReadOnly)] ``` Where...

@yohanboniface @twidi Interested in how others have solved this problem. At the momnent I've used a `PKField(use_collection=False)` then had to override methods on my own `class PKField(fields.PKField)` etc. Is got...

I think my situation is typical. I had `broadcasts`, a SortedSet of IDs relating to notification schedules. For example, ``` class PingSchedule(BaseRedisModel): """ Used as a replacement to redis-limpyd standard...

@twidi Sorry, I did not look at the date! My bad! But, I guess it's still a requirement. There are lots of times where you already know the ID and...

@twidi , sorry to fill up your inbox :) Looking at this more closely, my example is trying to replicate creating a collection in limpyd. I think it would be...

Yep, sorry about my long explanation 👎 . It's because of the dependency on filtering my first example would be a bad idea. However, if we had something like `InstanceHashCollectionField`...

@twidi Thanks regardless, it's a fantastic package. I've only spent a small amount of time digging into it anyhow. I'm sure I can find a good solution.

Turns out to be easy. I've added a new property called `limpyd_collection` which dictates if limpyd should create a collection in Redis. Here is a basic example of how I...