Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4113728
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T22:21:48+00:00 2026-05-20T22:21:48+00:00

I have a perl script that processes millions of lines of performance data, so

  • 0

I have a perl script that processes millions of lines of performance data, so I need a way to store metric information efficiently. I discovered perl’s vec() function, which allows you to manipulate the bits of a string directly. This can be used to simulate an array, in a memory efficient manner.

And it works great for storing integer values. But for floating point values, it doesn’t work so well.

Here is an example:

#!/usr/bin/perl

my ($s) = '';

vec($s, 0, 32) = 1234;
vec($s, 1, 32) = 12.34;
vec($s, 2, 32) = pack('f', 12.34);

print "1st vec: " . vec($s, 0, 32) . " (should be '1234')\n";
print "2nd vec: " . vec($s, 1, 32) . " (should be '12.34')\n";
print "3rd vec: " . unpack ('f', vec($s, 2, 32)) . " (should be '12.34')\n";

Running this code, on my machine (Mac OS X 10.6.7, perl 5.8.9) returns the following:

1st vec: 1234 (should be '1234')
2nd vec: 12 (should be '12.34')
3rd vec:  (should be '12.34')

As you can see, in the simple case, perl just rounds the floating point number down to the nearest whole integer. I have even tried to get fancy by using pack()/unpack(), but that just zeros out all of the bits.

I’ve tried several more variations, increasing the # of bits, Googling around, etc. to no avail. This really seems like it should work, since at the end of the day, it’s all just bits.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T22:21:48+00:00Added an answer on May 20, 2026 at 10:21 pm

    vec only writes integer, which is why 12.34 in the second example is converted to 12. The packed string in the third example is converted to a 0, and unpack(‘f’, 0) fails.

    One solution is to write the packed value as integer,

      vec($s, 2, 32) = unpack('L', pack('f', 12.34));
      print unpack('f', pack('L', vec($s, 2, 32))), "\n";
    

    However, it is better / fastest to not use the detour via vec at all, and instead use the 4 argument version of substr, i.e., specifying (expr, offset, length, replacement):

     substr($s, 2*4, 4, pack("f", 12.34));
     print unpack("f", substr($s, 2*4)), "\n";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Perl script that processes a bunch of file names, and uses
I have a perl script that I need to tweak. The script runs and
I have a Perl script that I'm attempting to set up using Perl Threads
I have a Perl script that sets up variables near the top for directories
I have a Perl script that I'd like to run on Windows, using either
I have a Perl script that pops up a message box when its work
I have an existing Perl script that uses the FTP object to send a
I have a little Perl script (On Windows) that checks some files for me
I have Perl script and need to determine the full path and filename of
I have a Perl script that uses LWP::UserAgent to download a webpage which it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.