seomoz / pyreBloom

Fast Redis Bloom Filters in Python
MIT License
289 stars 67 forks source link

Eventlet #19

Closed ppiccolo closed 4 years ago

ppiccolo commented 8 years ago

Hi ... using pyrebloom with celery and eventlet cause segmentation fault :(

any idea ?

dlecocq commented 8 years ago

Are you using the same pyreBloom object across eventlets? The network communication is done in a C extension in this library and may well not play well with eventlet. You might be able to either:

ppiccolo commented 8 years ago

Yes ... same object, I'll give a try to https://github.com/xupeng/bloomfilter-redis

tnx