View previous topic :: View next topic |
Author |
Message |
nivedita Beginner
Joined: 04 Nov 2003 Posts: 22 Topics: 15
|
Posted: Fri Dec 26, 2003 3:59 am Post subject: In memeory cache / database |
|
|
HI ,
I am enclosing some writeup on in-memory cache / database .Can you please let me know if such an implementation is possible
for mainframe cobol / db2 application .The below writeup was prepared for a java application .
The set of data like reference data, business rules and validation rules which are frequently accessed by the application. Typical characteristics of these data are:
|
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
sri_naveen Beginner
Joined: 29 Oct 2003 Posts: 10 Topics: 0 Location: Indore, India
|
Posted: Tue Dec 30, 2003 4:23 am Post subject: |
|
|
Hi Vani,
Stored procedures are alright if you also constantly update info, but since this is a typical read only stuff that needs to reside in MM, you can use the time tested Object Oriented paradigm....declare a template (its possible in java) and hardcode the logic on a layer above that template...this can be read only and reside in MM..while you can actually instantiate an object for the update transaction(s).
Lets not constrain our working to the so called "Database frameset"...OODB can be fun to explore...
Thanks and regards _________________ Regards,
Naveen Srinivasan
Computer Sciences Corporation
--To err is human, to err again is more human-- |
|
Back to top |
|
|
vani Beginner
Joined: 28 May 2003 Posts: 51 Topics: 30
|
Posted: Tue Dec 30, 2003 9:46 am Post subject: |
|
|
Thanks, using stored procedure was a good suggestion.
Will get back if I face any probelms. |
|
Back to top |
|
|
|
|