pl/python調用aerospike

來源:互聯網
上載者:User

標籤:

1.先安裝pl/python模組

yum install postgresql94-plpython.x86_64 在postgres使用者下執行createlang plpythonu

2.編寫python代碼 /usr/lib64/python2.6/plpy_as_cli_test.py

import aerospikeimport sysconfig = {  ‘hosts‘: [      ( ‘192.168.0.30‘, 4000 )  ],  ‘policies‘: {      ‘timeout‘: 1000 # milliseconds  }}def get_as_data():    global client    if client == None:        client = aerospike.client(config)        client.connect()    # Retrieve the record using the key.    (key, meta, bins) = client.get((‘test‘,‘demo‘,‘foo‘))

3.編寫pl/python預存程序

CREATE FUNCTION py_get_as_data()  RETURNS voidAS $$  import plpy_as_cli_test  plpy_as_cli_test.get_as_data()$$ LANGUAGE plpythonu;

4.在psql中執行如下命令

select py_get_as_data()

這樣就完成了sql調用python程式碼完成aerospike互動的過程。

是不是很爽,sql可以通過pl/python中可以幹任意想乾的事情哦。







pl/python調用aerospike

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.