[LINUX] Behandeln Sie Posix-Nachrichtenwarteschlangen in Python

Überblick

Verfahren

$ sudo pip install posix_ipc

Implementierung


#!/usr/local/env python
# -*- coding: utf-8 -*-

import json
import posix_ipc
import time

if __name__ == "__main__":
    posix_ipc.unlink_message_queue("/queue_name")

    mq = posix_ipc.MessageQueue("/queue_name", posix_ipc.O_CREX)
    counter = 0
    while True:
        counter += 1

        #Mit Senden in die Warteschlange stellen, str,Unicode senden
        mq.send(json.dumps({"loop_count": counter}))
        print "queue: %d" % counter
        time.sleep(1.0)

    posix_ipc.unlink_message_queue("/queue_name")

#!/usr/local/env python
# -*- coding: utf-8 -*-

import json
import posix_ipc
import time

if __name__ == "__main__":
    mq = posix_ipc.MessageQueue("/queue_name")
    while True:
        msg = mq.receive()
        print json.loads(msg[0])
        time.sleep(0.5)

Recommended Posts

Behandeln Sie Posix-Nachrichtenwarteschlangen in Python
Ausnahmemeldung in Python
Markdown mit Python behandeln
Behandeln Sie Umgebungsdaten in Python
Behandeln Sie Umgebungsvariablen in Python
Behandeln Sie komplexe Zahlen in Python
Behandeln Sie Daten im NetCDF-Format mit Python
Behandeln Sie das GDS II-Format mit Python
Umgang mit Japanisch mit Python
Behandeln Sie mehrere Python-Versionen in einem Jupyter
Quadtree in Python --2
Python in der Optimierung
CURL in Python
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Epoche in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
nCr in Python
N-Gramm in Python
Programmieren mit Python
Plink in Python
Konstante in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
LINE-Bot [0] in Python
CSV in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
Verwenden Sie ein Kryptografiemodul, das OpenSSL in Python verarbeitet
Behandeln Sie Zip-Dateien mit japanischen Dateinamen in Python 3
Wie man mit dem Datum / Uhrzeit-Typ in Pythons SQLite3 umgeht
Sortierte Liste in Python
Clustertext in Python
AtCoder # 2 jeden Tag mit Python