1,051 reputation
220
bio website
location New Jersey
age
visits member for 1 year, 8 months
seen 19 hours ago
stats profile views 126

I enjoy playing with technology and programming. Hope I can help you.


Nov
21
comment Weird garbage production when instantiating Objects in Java
@user489041 He is sleeping after the System.gc() so there is a good chance that the GC will run. And it looks like it is because stuff is getting collected... Could it be that the freeMemory() is just broken somehow?
Nov
21
comment What do setting do I use for xcode-select -switch?
Perfect! Do I need to do that every time I restart my computer?
Nov
20
comment MentaBean: Using OR instead of AND to load a list of beans
I am using ENUMID. I edited to add the missing column. Thanks!
Nov
20
comment Auto-wiring on MentaContainer not working?
Wow !!! That did it! Thanks, Sergio!
Nov
20
comment Auto-wiring on MentaContainer not working?
Thanks for helping out, but switching those lines did not change anything. It is still null. :(
Nov
20
comment Auto-wiring on MentaContainer not working?
@JohnPristine Sorry! I added it to the question...
Nov
6
comment What are the preferable ways to do Java web development with eclipse Juno?
Why? Just want to know how people are doing web development inside eclipse? Are they using sysdeo or WTP or ???
Oct
11
comment Synchronize Java Virtual Machine with System.nanoTime
Can we get at least microsecond precision here in Java for the epoch time across different machines?
Oct
1
comment When working with ByteBuffers on Intel, when should I choose Little Endian versus Big Endian?
@pst If you have one node big and another node little, and you define your protocol little, one of the nodes will have to convert, right? As Peter said, the cost will be very little but it will be still a cost, correct? Better to have nodes with the same architecture talking to each other so none of them needs to convert.
Oct
1
comment When working with ByteBuffers on Intel, when should I choose Little Endian versus Big Endian?
"it has to match what the other end expects" that's important otherwise the other end will have to convert which sucks. So what you are saying is, just choose the native one on all nodes and be happy. What to do If you are unlucky to have one node with intel (little) and another node with something big? I guess in the case there is no escape and one node will have to pay the conversion price.
Oct
1
comment When working with ByteBuffers on Intel, when should I choose Little Endian versus Big Endian?
Intel (little) => network (big) => intel (little) => so I should use LIttle endian everywhere and be happy?
Sep
28
comment How to implement a buffered / batched FileChannel in Java?
This is not yet very clear to me, Peter so I opened up a new question about it: stackoverflow.com/questions/12634163/…
Sep
27
comment How to implement a buffered / batched FileChannel in Java?
last question: Is there a difference in using a single FileChannel instead of a bunch of MemoryMapped byte buffers? I am wondering if the FileChannel is smart enough to PAGE and SWAP the same way you are doing with a sequence of memory byte buffers.
Sep
25
comment How to implement a buffered / batched FileChannel in Java?
I think the point i forgot to emphasize is that i will also need to read at random points of the big file. So some kind of swapping will be needed.
Sep
25
comment How to implement a buffered / batched FileChannel in Java?
@parsifal No, but I want to use FileChannel because I am dealing with ByteBuffers...
Sep
25
comment How to implement a buffered / batched FileChannel in Java?
Are both FileOutputStream and FileChannel non-blocking? I guess so... So the only advantage of FileChannel is that it can take a ByteBuffer directly. And it has force() which we don't care. But as people have mentioned before, FileChannel is faster then FileOutputStream: stackoverflow.com/questions/1605332/…
Sep
25
comment How to implement a buffered / batched FileChannel in Java?
I will take a look. You only lose data if the JVM crashes, right? Calling force kills performance, right? I like to add a shutdown hook with a force, but I don't even think it is necessary. The JVM probably has this shutdown hook already hidden in there.
Sep
25
comment How to implement a buffered / batched FileChannel in Java?
Tried that, Peter. It works great and fast but has a MAJOR drawback. If you ever has to expand the memory mapped byte buffer you hit a major bottleneck because you have to call force and re-map to a bigger file. And eventually you will run out of RAM space to map the file. I guess I would have to implement something similar to a virtual memory with page swapping...
Sep
25
comment How to implement a buffered / batched FileChannel in Java?
So even if I have a batch greater than 64kb I should call FileChannel.write in multiple chunks of 16k-64kb?
Sep
25
comment How to implement a buffered / batched FileChannel in Java?
Let's say I have to write 1000 messages that came in a batch. I don't want to call FileChannel.write 1000 times. I want to buffer this in Java and them call FileChannel.write just once. I guess I want a batching FileChannel.