79386970

Date: 2025-01-25 15:18:30
Score: 2.5
Natty:
Report link
  1. Can multiple P4 verify processes run in parallel?

Yes, you may use all sort of ways such as GNU parallel, & operator, etc, to run P4 command in parallel, with your own risk of hitting weird issue if their verification is somewhere overlapped.

  1. Does p4 verify -q //... check all files, including submitted files(archive files), shelved files, files in the unload depot, and files in the archive depot(archived files)? What commands should I run to ensure that I check every single file?

No, p4 verify -q //... does not check all files in all scenarios. Here's what it covers:

  1. Could you clarify the scenarios for using the -s parameter? My understanding is that the -s verifies both the file size and the MD5 checksum, while without it, it only verifies the MD5. Is that correct?

Your statement is correct. For when to use -s, Some examples might be, say, if you suspect file size issues or if you want a stronger verification process that checks both file content (MD5) and size.

  1. When users submit files, is the file's MD5 automatically generated and saved on the server? And what is the -u option used for in p4 verify?

Yes, when a user submits a file to the Perforce server, the server automatically computes an MD5 checksum for the file and stores it in the metadata database. This checksum is later used for verification during commands like p4 verify.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you clarify
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (0.5):
Posted by: PkDrew