| bio | website | gordiansolution.co.uk |
|---|---|---|
| location | United Kingdom | |
| age | ||
| visits | member for | 2 years, 7 months |
| seen | 2 hours ago | |
| stats | profile views | 999 |
I'm a professional PHP programmer with almost a decade of professional experience and considerably more as a hobbyist programmer. I've also had some exposure to Java, Object Pascal and am interested in learning objective C
I've started work on a PHP framework, though it's still at a very early stage and not yet really useful. The current source is available on GitHub.
I've also begun development of a CSS3 elastic grid for use on my own projects and had published that on GitHub as well.
|
Apr 28 |
comment |
Java blocking on multiple blockers I think this is going to take more work, but I think I can get this working with the following. The App is a single thread that just waits for input, processes it and returns output. The Server consists of 3 threads, upstream thread takes input from sessions and sends it to app, downstream thread takes input from app and sends it to the right session, listener thread establishes new connections. Sessions also consist of an upstream and downstream thread which encode and decode raw stream data into message objects to send over the wire. |
|
Apr 27 |
comment |
Java blocking on multiple blockers Well the plan is to have a single Application, and a collection of Sessions for each open connection (The Server serves as a front end for the Application but there's no requirement for them to run on separate machines). I guess there's no reason why the Application and the Sessions push incoming Messages to the Server in the same way if there's a simple way to tell which way a Message is going. |
|
Apr 27 |
comment |
Java blocking on multiple blockers Okay, thanks for the reply. Am working through it and trying to figure your idea out, though this is pretty advanced stuff from my level of experience. I guess scaling won't really be a concern as this is an academic project. If I understand right, the Server should have a single incoming queue, that both the Application and the Sessions can push messages onto, and that depending on some distinguishing feature of the Message (flag, subclass, etc), the Server routes the Message to either the appropriate Session or the Application. Is this correct? |
|
Apr 27 |
comment |
Java blocking on multiple blockers I am considering the 2 threads idea, but I think that would mean 2 threads per session. It'd be very easy for the number of threads to balloon out of control if I'm not careful. The other approach is attractive, but I'm not sure how to go about doing it, because one source of events is a blocking queue from the application, while the other is a socket from the client. |
|
Apr 26 |
comment |
Java blocking on multiple blockers Yeah, I do think you misunderstood. :) The clients already get a unique ID. This isn't also a problem that can be solved with just a simple or, as it's time dependant. The main server thread has to wait until either one or the other condition is true. However you can't just sit in a loop as it would just peg the thread CPU usage at 100% for basically doing nothing. |
|
Apr 26 |
revised |
Java blocking on multiple blockers deleted 19 characters in body; edited tags; edited title |
|
Apr 25 |
awarded | Notable Question |
|
Apr 24 |
asked | Java blocking on multiple blockers |
|
Apr 24 |
awarded | Nice Question |
|
Apr 23 |
comment |
Hide a div tag in PHP code PHP has no concept of the HTML page other than as a string of characters it sends to the client. You could add a style="display:none;" or a class you can use to style the element as invisible but the logic for deciding when to do so and where to put it in your code is up to you. Also your code is wide open to abuse. |
|
Apr 18 |
accepted | cloning or unmodifiableCollection |
|
Apr 17 |
asked | cloning or unmodifiableCollection |
|
Apr 15 |
comment |
Comparing time from database and current time retrieved using date() function Please don't use the mysql_* functions, they're effectively deprecated, they'll be removed in a future version, and they have issues with newer versions of mysql. Switch to mysqli or PDO instead |
|
Apr 2 |
comment |
$_GET not deserializing/getting the value from checked check-boxes I assume this is PHP, yes? You might want to add a php tag to your question. |
|
Apr 1 |
comment |
Synchronization between parent and child thread (Child thread “on monitor”) The lastId one gets incremented so I think that one either needs to be synchronised or an AtomicInteger. Or at least that's the impression I got from the Clean Code book. Maybe I'm overthinking it. The others don't change value so having them be ints is fine. |
|
Apr 1 |
comment |
Synchronization between parent and child thread (Child thread “on monitor”) Also, as I think I read in Clean Code, ints need to be synchronised or replaced with AtomicInteger, so I switched the code over to using AtomicInteger. |
|
Apr 1 |
accepted | Synchronization between parent and child thread (Child thread “on monitor”) |
|
Apr 1 |
comment |
Synchronization between parent and child thread (Child thread “on monitor”) Thanks. I've covered a few Java modules during the course of my studies, but this is the first stuff I've done with concurrency. Clearly there's still a lot for me to learn. |
|
Mar 31 |
asked | Synchronization between parent and child thread (Child thread “on monitor”) |
|
Mar 30 |
comment |
I need to get the penultimate result from a for loop I'n not very familiar with Obj-C, but I'd have thought that the NSArray would have some kind of method that would return the contents of the array at a particular index. It should also have a method for turning how long the array is. If you know how big the array is, and can read from any index, then you surely must be able to read from the Nth-1 index, or find the value of that index, and check the index you're in during a given iteration against the nth-1 index. |