Redis 中文入庫成功,讀取資料寫入檔案亂碼問題

來源:互聯網
上載者:User

標籤:

近期須要用到redis ,可是在編碼這個問題上,糾結了非常久。
       需求 :每天一個進程將中文檔案入庫到redis中(不定時更新) ,另外幾個進程讀取redis中的資訊 ,並處理資料結果。使用的redis模組 :入庫正常,讀取資料成功,以GBK編碼寫入檔案出現異常。  通過下面參數串連 redis :
       client  = redis.StrictRedis(host=‘localhost‘, port=6379, db=0, password="***") 從stackoverflow上瞭解到 :最好傳入一個str類型的value給redis,而不是unicode,否則,redis會直接使用set命令,將你的value設定為utf-8的格式,當你使用get方法擷取資料的時候,redis本身並不關心你value的資料的類型,而給你返回一個str類型的value。因此,你儲存的時候value的類型是關鍵所在 ,主要體如今redis-py的原始碼中 :

        """        Encode the value so that it's identical to what we'll        read off the connection        """        if self.decode_responses and isinstance(value, bytes):                                                                   value = value.decode(self.encoding, self.encoding_errors)        elif not self.decode_responses and isinstance(value, unicode):            value = value.encode(self.encoding, self.encoding_errors)        return value

  解決方案 :在使用redis API 串連資料庫時 :

class  redis.StrictRedis(host='localhost', port=6379, db=0, password=None, socket_timeout=None,connection_pool=None, charset='GBK', errors='strict', decode_responses=True, unix_socket_path=None)

通過設定上述參數,攻克了編碼問題。


假設有人有更好的解釋和解決方式,求分享!



Redis 中文入庫成功,讀取資料寫入檔案亂碼問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.