Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

Pickling is fine, use cPickle for efficiency. However you should not write it to a file. Rather use some other IPC mechanisms, like sockets or pipes (i.e. see http://stackoverflow.com/search?q=python+named+pipeshttps://stackoverflow.com/search?q=python+named+pipes) that avoid the disk-overhead.

Pickling is fine, use cPickle for efficiency. However you should not write it to a file. Rather use some other IPC mechanisms, like sockets or pipes (i.e. see http://stackoverflow.com/search?q=python+named+pipes) that avoid the disk-overhead.

Pickling is fine, use cPickle for efficiency. However you should not write it to a file. Rather use some other IPC mechanisms, like sockets or pipes (i.e. see https://stackoverflow.com/search?q=python+named+pipes) that avoid the disk-overhead.

Source Link
rumpel
  • 8.4k
  • 2
  • 40
  • 39

Pickling is fine, use cPickle for efficiency. However you should not write it to a file. Rather use some other IPC mechanisms, like sockets or pipes (i.e. see http://stackoverflow.com/search?q=python+named+pipes) that avoid the disk-overhead.