Can apple silicon's mac use cassandra python sdk client?

It is written in the introduction of cassandra python sdk client, which does not support little endian

Because I am using apple silicon mac now, so, I want to know if it is supported or not?

python-driver
图片.png

 echo -n I | od -o | head -n1 | awk '{print $2}'| cut -c6

Output: 1 is little endian mode, 0 is big endian mode;

Parsing: The awk command is text processing.

 ╰─➤  echo -n I | od -o | head -n1 | awk '{print $2}'| cut -c6
1

So it's little endian!


universe_king
3.4k 声望680 粉丝