If I import a library to use a method, would it be worth it? Does importing take up a lot of memory?
|
1
|
|
|
|
|
|
borrowed from here
and to retrieve
|
||
|
|
|
|
Importing such a module is not likely to cost that much memory that you should refrain from it, though in this case probably a simple hash would be just as good. Something like
|
||
|
|
|
|
Or maybe:
Or using a zip function:
|
||||||||||
|
|
|
Here is yet another way to do it:
|
||
|
|
|
|
It depends on how much date manipulation you're intending to do. At first you're probably better off with hand-rolling it, e.g.
(I prefer this approach because it's comparatively obvious what you're doing - you have a list of months, then you map them from 1..12 (the numbers that make sense to a human) to 0..11 (the numbers that make sense to a computer). The performance bottlenecks in your code aren't going to be in this sort of code, they'll be in network, database or disc-accessing code, so concentrate on making your code readable.) As you start adding to your code, you may find that a lot of this stuff is done already by existing modules, and it might be easier to do some of the simple stuff with e.g. Date::Calc. Or you may find a date/time module more suited to your needs; that's beyond the scope of this question. Bear in mind also that some modules use autosplit, where only those parts of the module that are needed are loaded. Also, the main performance impact of using a large module isn't necessarily RAM, it's probably more likely to be the time/CPU overhead of loading and compiling it before any of your code has ever run. |
||
|
|
|
Definitely a hash, as suggested by others. |
||
|
|
|
|
Hmm - there seem to be plenty of overly complicated ways to do this. For something this simple clarity is key:
|
||
|
|
|
|
Note also that hash keys are case sensitive; depending on where your abbreviations are coming from you may want to down-case them first to match the hash keys.
|
||
|
|
|
|
Another way to do this using a hash slice:
|
||
|
|
