Skip to content

k-chaney/distributed_prime_number_computation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

distributed_prime_number_computation

A program to computer prime numbers across multiple computers and threads. The server is robust enough to handle client dropouts. The clients will shutdown if the server shutsdown.

This program can easily be run through the bash script that's included. This will however only work on Linux and Mac.


        SERVER

./prime_number server start_number

This starts a server at the given starting number.


        CLIENT

./prime_number client server_ip_address

This starts a client that connects to the given server.


For any version of java.

javac -classpath . *.java

To run the server

java Server start_number

To run the client

java Client server_ip_address server_port

About

A program to computer prime numbers across multiple computers and threads.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published