Questions tagged [pymemcache]

2 questions
2
votes
1 answer

How do I replace MemcachedCache with PyMemcacheCache in Django?

I'm running my website on Django 3.2. I read in Django’s cache framework that MemcachedCache and python-memcached are deprecated. I installed pymemcache==3.5.0 on my staging server and changed to CACHE_URL=pymemcache://127.0.0.1:11211 in env.ini.…
Uri
  • 2,992
  • 8
  • 43
  • 86
1
vote
0 answers

How to load a dataset into the pymemcache database

I'm supposed to load a dataset in a memcache database in python so I can exectue the CRUD operations on the data. I'm trying to use a df with pandas to create the keys and values, but I don't know how I'm supposed to import the df to the memcache…