Questions tagged [pattern-matching]

27 questions
0
votes
0 answers

How can I best construct data structures to retrieve similar values for demographic matching?

The job is person demographic matching/consolidation. I have incoming person demographic information which I need to determine if it is a match against an existing person in the a dataset. I get the following data; NAME_LAST VARCHAR2(40),…
-6
votes
1 answer

Using pattern matching to reduce IP Spoofing

The IP Spoofing is becoming a major concern these days.I was wondering whether we could use pattern matching,like comparing the hop count of the packets coming or the TTL(Time To Live) field of the IP datagram to reduce IP spoofing.Is there any way…