Can someone provide me links or snippets where a PHP process writes to memory and a Java process reads from the shared memory?
Thanks for the wonderful answers.
Edited question : Suppose i create a shared memory in php like this
<?php
$shm_key = ftok(__FILE__, 't');
$shm_id = shmop_open($shm_key, "c", 0644, 100);
$shm_bytes_written = shmop_write($shm_id, $my_string, 0);
?>
Now is there some method by which i can pass the value of $shm_id and then read from it in java.