× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.




I am using a list api to fill a user space for a display program.
Apparently they do not support any sorting.  I suppose I could originally
load into an array, then SORTA that, then load the subfile.  Anything
easier?  Not that the above process is hard.  Just don't want to overlook
the obvious.

One of the problems with SORTA is that you have to hard-code the size of each element when you define the array. That's often a show-stopper for me, since the API will return an "entry length" field, and there's no guarantee that it won't be different every time you call the API.

Another problem with SORTA is when you have different fields that you need to sort by. If it's a "flat" array, that's not usually a problem, but if it's an array of "records" and you need to be able sort by different fields in those "records" you run into problems, since to do that with SORTA you have to create an "overlay array" in a data structure -- and the maximum size of a data structure is 64k. It doesn't take long to exceed 64k when you're looking at data from a list API.

I've recently written my first draft of an article for iSeries NEWS that compares the different sort methods, and I had a heck of a time using SORTA to sort anything but a very small array. Though, the performance (at V5R3, with %subarr) was very good.

The QSORT API doesn't have any of these problems. With QSORT, the length can be a variable, you can sort by different fields, it doesn't have any practical size limitation.... QSORT's speed is about the same as SORTA on a small array, and a little bit better than SORTA on a larger one.

Another option is the QLGSORT API, but I wouldn't recommend it since it's both slower and more awkward to use than QSORT. It does have better controls for national language support than QSORT, and it's available to OPM languages which might be a plus to some people. But other than that, there's really no reason to use it instead of QSORT.

I also tried other methods that I wouldn't recommend for this project. A temporary file with SQL worked okay, but nothing near the speed of QSORT or SORTA. If you have to read it from a file, SQL is the way to go, but if the data is in a user space or memory, it doesn't make sense.

Using a keyed data queue, and using a user index were the other two methods I tried. Their performance was, frankly, pathetic by comparison to the other methods. They were also much more complicated to code than the other methods, so I really wouldn't recommend them.

Unless your data is simple enough to use with SORTA without any hassle, I'd use QSORT.

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.