If you store images to serve to the user, then you should read this. I did a brief search but didn't find anything relevant. Here it goes:
When Aware needs to display a picture/image that is stored in DB, it must create an image file and store it some place, so when the page is served to user, it would link to that created image in a directory. For this to happen Aware creates a file that starts with "BAST" and another one with "img.jpeg" for every user making a request.
So you can imagine how fast the number of these images can grow, based on the # of records in DB, the number of BO having Pictures and # of users. You multiple these and you get a total of images created at any moment.
These files are stored in \AwareIM\Tomcat\webapps\AwareIM folder and if you are running Windows OS on your sever, any time the # of files exceeds over certain numbers (forgot the # in 32-bit and 64-bit), the OS disk access becomes very slow. I had seen it with my own eyes on another product that was creating log file for each record.
So, what do we do with these left overs that aren't any use anymore?
I wrote this to Support that Aware sever should have a clean up routine built in to clean after it's operation, but I didn't get any reply.
So, should each one of us, approach the clean up on our own, If so, what are our choices:
I'd like to hear your thoughts.