Jump to content

David Heffernan

Members
  • Content Count

    3710
  • Joined

  • Last visited

  • Days Won

    185

Everything posted by David Heffernan

  1. What Mike is concerned about is that calling Replace is slower than filtering with Pos before calling Replace. In reality he is asking the wrong question. The right solution to the problem (see five year old SO question) is to iterate over the input string once rather than 5-10 times.
  2. Well there's your problem! Run through the string once only and you'll get a huge boost in performance. I described how to do that in my comment to your Q.
  3. Why not achieve faster in all cases then? Does the code that you are looking at, that is a bottleneck, still call StringReplace multiple times per input string, as per the SO question?
  4. If the code is not a bottleneck then surely you'd reach the opposite conclusion.
  5. You really need to learn about the extract method refactoring.
  6. No. I'd consider writing one myself if I found that my program was spending a significant amount of time in an inefficient function. But we've had this discussion before and you don't believe in that approach.
  7. Nothing needs to be fixed. StringReplace is giving correct output, isn't it? You absolutely don't want to be calling Pos inside an efficient implementation of StringReplace. All that you are learning is that StringReplace is not efficiently written. The correct way to deal with that is to find/write and use a more efficient function to replace text. That is of course if this is a bottleneck in your code. Have you checked? BTW, do you really have calls to Pos littered through your code whenever you call StringReplace?
  8. David Heffernan

    32bit bitmap

    Really? I mean true for bmp files but Windows API supports 32 bit bitmaps fine so far as I know.
  9. David Heffernan

    32bit bitmap

    Why don't you want to use a third party component?
  10. David Heffernan

    Prevent External DLL from Exiting Application

    That's what RPyC would gain you
  11. David Heffernan

    Hashing Street Addresses ?

    Two different values can have the same checksum. Read my previous post again. What you are expecting is impossible. I mean it. Impossible.
  12. David Heffernan

    Hashing Street Addresses ?

    What is a signature? All these terms being bandied about!!
  13. David Heffernan

    Hashing Street Addresses ?

    Yeah, that's not a hash. And what you want (known max length) is clearly impossible. If you could store arbitrary data in a lossless way in a data of a fixed length, then well, you can see where I am going.
  14. David Heffernan

    Hashing Street Addresses ?

    OK, maybe I misunderstood. I saw "hashing" and "indexed on", and inferred that you want to use a hashed collection like a dictionary. Hence the need to define data structure and what equality means. But perhaps you want to hash this data for some other reason. What will you do with this hash?
  15. David Heffernan

    Hashing Street Addresses ?

    First of all, don't worry about hashing the data. Work out how to represent the data, what data structure to use. And then define what you mean by equality for this data. Once you have done that, and have a clear specification of that, defining a hash function should be obvious. But if not, we will be able to help at that point. But first you need to define the data structure and the equality operator.
  16. David Heffernan

    Prevent External DLL from Exiting Application

    Any code can terminate the process. The way you avoid this is to ensure that the code you run doesn't lead to fatal errors. In this case it sounds like the issue is that you need to make sure that your environment has the correct packages installed.
  17. What is the advantage over Timsort?
  18. David Heffernan

    High processor due to internal loop

    I'm not sure what you want to do. Do you want to read the XML quickly? Or do you want to read the XML without using CPU resources? Because it seems like you want to do both but of course you can do one or the other but not both.
  19. David Heffernan

    Try-Finally-end; & Exit??

    No. This is of course easy to test using debugging techniques, trace logging etc. It's also documented in the language guide.
  20. @Stefan Glienke already explained that quadword reads/writes are atomic for aligned data.
  21. This is true for all atomic memory operations. Is your argument that we should not use atomic memory operations? That can't be what you mean. Like all code, there are pre-conditions for it to work. In this case we require the memory to be aligned. Onus for that falls on the user. And it's clear that Thomas knows this.
  22. No. The polymorphism applies to method dispatch, and not to the types.
  23. No. It's not counting lines. It's counting warnings. The compiler emits two distinct warnings. For whatever reason they are identical. There's doubtless some internal quirk that explains it.
  24. They are all counted correctly. Look in the screen shots. Count the items marked error, warning and hint. Compare to the totals reported. In every single case these match. I think in this case you need to pay a bit more attention to the detail.
×