Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Rick Waugh #1
Locking Objects
I've created this lovely little object oriented application, where I'm
retrieving the data for an object, and storing it as a session variable for
someone to work on. The problem comes in record locking - how do I lock those
records - I want to have an error message come up to tell someone else that the
data is already locked.
I'm considering using an application level object, that keeps a list of data
being updated, that would be checked whenever someone tries to edit. My
question is around locking - if I create an application object that keeps an
array of structures, each structure representing one locked piece of data, do I
need to use CFLOCK to lock the entire application level object when it is
updated, or just the array inside the object?
Thoughts, opinions, warnings, am I driving off a cliff?
Rick Waugh Guest
-
Updating Objects in Objects in the Library
We just received an InDesign job from a client and they provided templates, fonts, art, and a library. When I drag a library item onto a page I get a... -
Newbie Question? Aligning Objects to other Objects?
Hi, I think this a newbie question and I will try to explain it as best as possible! I have a hollow circle (no fill, or stroke) and x amount of... -
Storing Objects/Arrays in Stored Objects
Hello All, I recently came across a very frustrating issue when trying to create and store arrays within objects in a Shared object. It took me... -
DB2 locking UDF dll
Meg wrote: Which version of db2 are you using? For v8, try set KEEP_FENCED to no (db2 update dbm cfg using KEEP_FENCED NO). This way, the fenced... -
is this an acceptable way of passing objects to other objects?
I've read that objects should always be passed by reference to other objects. I've also read that future versions of PHP may not support runtime... -
emanweb #2
Re: Locking Objects
Hi Rick,
I think there is a missunderstanding on the cflock usage here 9if you
use google for cflock will find a lot of good resources). What I
understood about what you want to do is a system to avoid concurrent
access to the data object that someone is already having access. In
this case what I recomend is creating a repository of data where you
store the user id and the object id, then query this repository
whenever someone needs to access any object.
sorry for my poor english.
HTH
Emanuel Costa
emanweb Guest



Reply With Quote

