Browse Source
Tl;dr we now use __slots__ in a bunch of places. This could still be better, and we do a bit too much magic in the modeling to make me happy. But thats for later, for now we're going from ~250mb on 2500 guilds to ~160mb. - Allow configuring the state module within the normal configuration (under the 'state' key) - Rate limit events being sent on the gateway socket - Convert to using lazy_datetime in a bunch of places - Allow configuring guild member sync - Better logic around loading guilds, add State.ready condition which can be waited on - Fix inheritance in the modeling framework (how was this not working before lol wut) - Added __slots__ to a bunch of low-hanging fruit models - Move member sync onto the guild object as Guild.sync() - Convert to Dannys CachedSlotProperty (could still be better, will improve later) - Added util.snowflake.calculate_shardpull/6/head
15 changed files with 193 additions and 80 deletions
@ -0,0 +1,37 @@ |
|||
import time |
|||
import gevent |
|||
|
|||
|
|||
class SimpleLimiter(object): |
|||
def __init__(self, total, per): |
|||
self.total = total |
|||
self.per = per |
|||
|
|||
self.count = 0 |
|||
self.reset_at = 0 |
|||
|
|||
self.event = None |
|||
|
|||
def backoff(self): |
|||
self.event = gevent.event.Event() |
|||
gevent.sleep(self.reset_at - time.time()) |
|||
self.count = 0 |
|||
self.reset_at = 0 |
|||
self.event.set() |
|||
self.event = None |
|||
|
|||
def check(self): |
|||
if self.event: |
|||
self.event.wait() |
|||
|
|||
self.count += 1 |
|||
|
|||
if not self.reset_at: |
|||
self.reset_at = time.time() + self.per |
|||
return |
|||
elif self.reset_at < time.time(): |
|||
self.count = 1 |
|||
self.reset_at = time.time() |
|||
|
|||
if self.count > self.total and self.reset_at > time.time(): |
|||
self.backoff() |
Loading…
Reference in new issue