|
I am looking for an inter-process communication library in Java. I am looking to send small messages between JVMs and would like to do it using shared memory if I could.
Started by Javamann on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't know if it will fit your requirements.
I would suggest you to take a look on Terracotta .
|
|
I know it seems early, but Inters 2012 is only 3 months away, and will be here before we know it.
Seen as there has been alot of interest in our first London regional meet next tuesday, i thought i'd see who'll be going this year, so we can definitely...
Started by richard Mk2 on
, 8 posts
by 3 people.
Answer Snippets (Read the full thread at com):
|
|
What is the best and easiest method that can be used for inter-process communication in a very large project?
My requirement is to communicate between a normal Windows Forms Application and Windows Services.
Methods that are easy to maintain and implement...
Started by Josh on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It unifies this issue, abstracting specific inter-process (inter-service) communication....
Perhaps you should try Microsoft WCF.
Whatever you do it should.
With an overhead, so it may be worth looking at a simple interface API via a DLL.
|
Ask your Facebook Friends
|
I am looking for an inter-process communication facility that can be used between languages and/or environments running on the same or different systems. For instance it should allow signals to be sent between Java, C# and/or C++ components, and it should...
Started by Paul Morrison on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Well, you could definitely look....
It is easy to use.
-Shamik
I would use XML-RPC personally.
In EAI patterns, the JMS bus is heavily used if you are looking for something else.
You need to probably look at something like ActiveMQ .
|
|
I looking for the best way to check for inter-table constraints an step forward of foreing keys. For instance, to check if a date child record value is between a range date on two parent rows columns. For instance:
Parent table ID DATE_MIN DATE_MAX 1 ...
Started by FerranB on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Most databases also have some form of check constraints, in which pretty much anything you can put in a WHERE clause can be used as a check... .
I'd go the stored proc and trigger route; one of their major purposes is to ensure data integrity at the DB level .
|
|
Which of the B5ers are going to inters and campings?
Get your post on over here.
GTI Inters 2012 23/24 Of June -=: Official DiscussionThread:=-
Started by ScottB5 on
, 11 posts
by 6 people.
Answer Snippets (Read the full thread at audi-sport):
I am really looking forward to my first time at Inters and also my first event with the business.
|
|
We are looking to give access to some of our employees to chat with each other - however we are worried about them abusing the privilege and chatting we friends outside work. We have decided to deploy our own XMPP Server to solve this. I'm looking for...
Started by Chance on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Written in erlang it's adopted for very highloads.
FreeBSD as inter-company messaging system for years.
|
|
I'm looking for a way to get two programs to efficiently transmit a large amount of data to each other, which needs to work on Linux and Windows, in C++. The context here is a P2P network program that acts as a node on the network and runs continuously...
Started by Stephen on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Because it boils down to: use TCP.....
If you are not talking internet, or if you explicitly don't have clients behind carrier grade evil NATs, you need to say .
The bottleneck is the internet, and that your clients might be on NAT .
This is a hard problem.
|
|
Recommendations for languages with native (so no FSM generation tools) support for state machine development and execution and passing of messages/signals. This is for telecoms, e.g implementation of FSMs of this level of complexity.
I have considered...
Started by hapalibashi on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I would look at systems/languages of arbitrary prefixes for a list of words, the idea being looking up menu options without predefined keybinds how you can implement a telco ....
Need to do this for telecom development and mention messages .
|
|
I have a project that calculates a number of 'statistics' about a users performance and then shows it to them. All these statistics ultimately come from a large table of 'interactions' that record the users interaction with the site. At the moment, all...
Started by brbob on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Personally....
Calculated columns and views are OK - these are managed and updated automatically by SQL server .
(This is, after all, the object of database normalization).
When I'm doing database design, I try to avoid storing redundant data whenever possible .
|