Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Performance / Design question


spongebob

This topic is 5311 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hello Forums.

I have a general design question.

Im creating an ordering system where on one order a client can have many work-experiments (simple portal).

Now. In this particular case, an order will have VERY MANY work-experiments in it, in this case the maximum number of work-experiments in one Order will be 3000. (Yes, !!)

My solution has a routine, which will create such a "large order" automatically. It uses various tables for basic info to create an order of this size for the client, prefilled with his 3000 work-experiments.

This routine, goes to the table of work-experiments and creates a record, then duplicates it and modifies it slightly, duplicates it again etc. Its actually very effective and very fast. In a single user FM Advanced (version 8.5) situation, for an Order with 4500 items it only needs 90 seconds to create the whole thing, which is very acceptable for the generation of an order of this size.

Happy with that.

Million Dollar Question: How might this behave in a server environment? We want to deploy the solution in a small organisation with FM Server. If my script runs, i.e. one person makes an order, is that likely to "Block" the other users from using/looking at the other Orders?

ie, if in the portal table one Client is happily duplicating records for 2 minutes, does that block other users from acessing the portal entries of other orders they may be looking at?

Finally, Im new to FM 10. What is Server side scripting and is there an advantage here of maybe using client side or Server side scripting in a situation like this?

Evidently, of person A is doing something relatively intensive in the DB I dont want users B and C blocked...

Or am I fearing for nothing here?

Thanks for any inputs on the design of the idea, and no before you ask; unfortunately I cannot reduce the number or work-experiments on an order...

all my best and thanks for any thoughts.

Link to comment
Share on other sites

I don't see any multi-user red flags. Remember "reads" of records, such as what you seem to be doing, do not incur a record lock.

I'd be curious as to how each Order's line items (the work-experiments) differ. Rather than a duplicate routine, could you perhaps do an import? Is there any "template" opportunities. That portal must take a while to load...

Server-run scripts do move the processing from the client to the server, and that might help here. It might be worth it to "queue" a work order creation, and then have a server script do it. An email could be sent to the user that it's done.

Link to comment
Share on other sites

Order with 4500 items it only needs 90 seconds to create the whole thing, which is very acceptable for the generation of an order of this size.

You're stretching our imagination here, are these alterations completely random ... 90 seconds seems a lot if a recursive structure should be fitting better??

--sd

Link to comment
Share on other sites

This topic is 5311 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.