I known this probably goes against lots of general rules in programming, but how would you do this? There are two reasons why I am asking this:
- I want to attempt to have on app write data to RAM and another to read that same data from RAM.
- I want to known because in the near future I will have to optimize a java application.
Java is not able to read/write to an arbitrary position in the RAM.
If you want to share data between different applications, I recommend using a file or a database.