Swarm
Swarm copied to clipboard
Swarm must find a way to adaptively arrange data on servers to minimize the number of times a thread must jump from one computer to the other. Mailing List Threads:...
I follow the instructions in the readme, but when I visit http://localhost:8080/ I get the following error: ``` HTTP ERROR 500 Problem accessing /. Reason: javax.servlet.http.HttpServletResponse.getStatus()I Caused by: java.lang.NoSuchMethodError: javax.servlet.http.HttpServletResponse.getStatus()I...
Swarm requires that every Swarm node be running the same codebase. I think this can be achieved by hooking into the JVM's classloader and making it retrieve packages on-demand as...
The ideal Swarm web framework would treat the open HTTP connection to the web browser as just another Swarm object, referenced through a Ref(), but, of course, tied to a...
The current unit tests rely on the InMemTest class, which is a bit of a hack to simulate continuation serialization transport. It would be much better to create a test...
(Just porting over Google Code issues) Ian proposed examining "software transactional memory" as a way to prevent threads from interfering with each-other in bad ways. This spawned a discussion on...
The Twitter demo is meant to be deployed for public consumption, so it needs a way for user accounts to be secured from unauthenticated access.
The Twitter demo is meant to be deployed for public consumption, so it needs a way for users to create accounts for themselves.
Scala collections do not use Swarm references internally, which means that they cannot be split across multiple machines. We need to create "Swarm-ful" versions of these collections that do use...