Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用python和django 框架!如何使用cql 引擎将图像存储到Cassandra数据库中?以及如何在 image_tag 中显示这些图像?
要使用 cqlengine 将二进制数据移入和移出 cassandra,您需要使用 Bytes 列。
要通过<image/>标签公开图像,您可能需要设置一个返回保存的二进制数据的视图,并在 django 响应中设置 mimetype。
<image/>