mirror of https://github.com/rq/rq.git
Use __slots__, for minimal memory overhead.
This commit is contained in:
parent
ced001cbb9
commit
0ff2984adf
|
@ -17,9 +17,11 @@ class DelayedResult(object):
|
|||
self._rv = loads(rv)
|
||||
return self._rv
|
||||
|
||||
|
||||
class Job(object):
|
||||
"""A Job is just a convenient datastructure to pass around job (meta) data.
|
||||
"""
|
||||
__slots__ = ['func', 'args', 'kwargs', 'rv_key', 'origin']
|
||||
|
||||
@classmethod
|
||||
def unpickle(cls, pickle_data):
|
||||
|
|
Loading…
Reference in New Issue