Redis
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> Redis

Cách đặt / lấy khung dữ liệu Pandas vào Redis bằng cách sử dụng pyarrow

Đây là một ví dụ đầy đủ để sử dụng pyarrow để tuần tự hóa khung dữ liệu gấu trúc để lưu trữ trong redis

apt-get install python3 python3-pip redis-server
pip3 install pandas pyarrow redis

và sau đó trong python

import pandas as pd
import pyarrow as pa
import redis

df=pd.DataFrame({'A':[1,2,3]})
r = redis.Redis(host='localhost', port=6379, db=0)

context = pa.default_serialization_context()
r.set("key", context.serialize(df).to_buffer().to_pybytes())
context.deserialize(r.get("key"))
   A
0  1
1  2
2  3

Tôi vừa gửi PR 28494 cho gấu trúc để đưa ví dụ về loài chim pyarrow này vào tài liệu.

Tài liệu tham khảo:

  • https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.to_msgpack.html
  • https://arrow.apache.org/docs/python/ipc.html#arbitrary-object-serialization
  • https://arrow.apache.org/docs/python/memory.html#pyarrow-buffer
  • https://stackoverflow.com/a/37957490/4126114


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Cách thiết lập Yii2 với cấu hình Redis

  2. Giải cứu:Kết nối bị từ chối - Không thể kết nối với Redis trên localhost:6379

  3. nginx lua redis cookie not setting

  4. Môi trường tùy chỉnh Rails Resque.enqueue không tạo việc làm

  5. Chia sẻ phiên với redis và hộ chiếu trên một miền phụ?