I am curious if using an socket daemon in PHP a good idea for building RPC functionality on a distributed system?
Is using IP sockets for RPC functionality for a distributed system a good idea?
223 Views Asked by mvbl fst At
1
There are 1 best solutions below
Related Questions in PHP
- php Variable name must change in for loop
- register_shutdown_function is not getting called
- Query returning zero rows despite entries existing
- Retrieving *number* pages by page id
- Automatically closing tags in form input?
- How to resize images with PHP PARSE SDK
- how to send email from localhost using codeigniter?
- Mariadb max Error while sending QUERY packet PID
- Multiusers login redirect different page in php
- Imaginary folder when I use "DirectoryIterator" in PHP?
- CodeIgniter + XDebug: debug only working in the main controller, index() function
- PHP script timeout when I use sleep()
- posting javascript populated form to another php page
- AJAX PHP - Reload div after submit
- PHP : How can I check Array in array?
Related Questions in SOCKETS
- Drawing with ncurses, sockets and fork
- UDP sockets in C not working
- How can I send multiple objects over one socket in java?
- psuedo TCP multicast with os.dup2() in python?
- My get request for http is very slow
- Nodejs connect mysql socket to another host?
- HttpRequestContext vs HttpContext
- Spring based client server communication without network
- Java does not accept 2 methods with same name
- Retrieve Data From EOC(Eithernet Over coxial) device
- Ping a server without freezing the Thread
- C sockets: Exit client after all data is received
- What is the best way to send XML converted to a byte array over TCP, then translate the response back to readable XML?
- C# Winform to Connect to Device Using IP
- Java Restart a Socket
Related Questions in DAEMON
- HTML call that triggers daemon subprocess
- sinatra start as daemon programmatically
- What happens to python thread object, when the status of that object reached closed state?
- Keeping a long running (forever) php CLI process running on Windows
- Run rb-fsevent in the background
- Python server daemon not working
- Shutdown ElasticSearch when running in daemon mode
- start-stop-daemon doesn't detect already running daemon
- Jenkins build failure,Gradle build daemon disappeared unexpectedly
- How to run application on linux in the background but leave possibility to interact with it?
- sbin/start-stop-daemon not able to start python - ubuntu docker container
- spawn daemon process with make
- Run a Perl script in the background and send it commands
- XOpenDisplay fails when run from daemon (C language)
- how to daemonize a script
Related Questions in RPC
- Call IConnectionPoint::Advise cause a crash
- How do I implement RMI using the computers connected in the same network?
- The RPC server is unavailable while creating user in Active Directory
- What is the equivalent of RPC in new Unity Networking?
- Protobuf-Net: implementing server, rpc controller and rpc channel
- Perl XML-RPC output format/schema
- How do you correctly exit a remote job in a PowerShell session
- Error:1722 Getting session names
- Python: use xmlrpc module with a server requiring authentication
- Java inter-process communication in year 2015 (with no boiler-plate)?
- How can I configure hadoop rpc's timeout?
- Passing of value from one separate application to another
- install gRPC and got make error
- How to make an application get know that some other application is offline (RPC)?
- Connect to RPC Server in Docker
Related Questions in JSON-RPC
- Socket.io + JSON RPC how to use them together
- Retrieve values from multiple itemids in zabbix api 2.0
- Passing reference to XBMC json-rpc to identify answer later
- How can I pass a user_type from an Eliom client to a coservice?
- Automated Testing Tool for Json-Rpc?
- Exception message in Servlet
- Tomcat can't start the app because it can't find JSONRPC2ParseException class
- Reflection - can't call java method from JSON-RPC request
- Zend Framework 2 JSON-RPC Invalid Request
- Error handling using JQuery Terminal Plugin and Django with jsonrpc
- xml-rpc or json-rpc with qml
- How to get received/sent transactions from bitcoin core?
- Subscribe to Kodi's JSONRPC notification
- bitcoin JSON-RPC Api requests in React native?
- Total Supply reading in as zero for deployed Ether Token contract
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Well, it depends on what exactly you're doing. But in general, I'd personally build a restful interface as opposed to using raw sockets. That way it's just a normal HTTP get (which is easy to use, extend, etc) rather than needing to invent your own protocol. Either that, or use one of the many RPC protocols: