কম্পিউটার

Node.js-এ script.createCachedData() পদ্ধতি


script.createCachedData() পদ্ধতিটি একটি কোড ক্যাশে তৈরি করতে ব্যবহৃত হয় যা স্ক্রিপ্ট কনস্ট্রাক্টরের ক্যাশেডডাটা বিকল্পের সাথে ব্যবহার করা হবে। এই ক্যাশেডডেটা লেটেন্সি ছাড়াই একাধিকবার কল করা যেতে পারে। এই পদ্ধতিটি 'স্ক্রিপ্ট' মডিউল থেকে একটি অন্তর্নির্মিত প্রোগ্রামিং ইন্টারফেস।

সিনট্যাক্স

script.createCachedData()

পরামিতি

যেহেতু এটি শুধুমাত্র ডেটা ক্যাশে করে। এটি ব্যবহারকারীর কাছ থেকে কোনো নির্দিষ্ট ইনপুট প্রয়োজন হয় না. এটি শুধুমাত্র ক্যাশে করা বাফার ফেরত দেয়৷

উদাহরণ

নামের একটি ফাইল তৈরি করুন - createCachedData.js এবং নীচের কোড স্নিপেটটি অনুলিপি করুন। ফাইল তৈরি করার পরে, নীচের উদাহরণে দেখানো এই কোডটি চালানোর জন্য নিম্নলিখিত কমান্ডটি ব্যবহার করুন −

node createCachedData.js

createCachedData.js

script.createCachedData() পদ্ধতির প্রবাহ প্রদর্শনের জন্য
// Node.js program to demonstrate the flow of script.createCachedData() method

// Importing the vm module
const vm = require("vm");

// Defining the script as constant and usng the below function
// to create the cached data for the difference of two numbers.
const script = new vm.Script(`
   function add(a, b) {
      return a - b;
   }
   const x = add(2, 1);
`);

//Creating the cached data without caching the variable
const cacheWithoutx = script.createCachedData();
console.log(cacheWithoutx);

আউটপুট

C:\home\node>> node createCachedData.js
<Buffer b5 03 de c0 8a f4 d4 f4 3d 00 00 00 ff 03 00 00 d5 a2 f5 b7 06 00 00
00 00 00 00 00 28 02 00 00 8f 87 4d e3 59 55 98 f9 00 00 00 80 20 00 00 80 00
03 ... >

উদাহরণ

আসুন আরও একটি উদাহরণ দেখি।

script.createCachedData() পদ্ধতির প্রবাহ প্রদর্শনের জন্য
// Node.js program to demonstrate the flow of script.createCachedData() method

// Importing the vm module
const vm = require("vm");

// Defining the script as constant and usng the below function
// to create the cached data for the difference of two numbers.
const script = new vm.Script(`
   function add(a, b) {
      return a - b;
   }
   const x = add(2, 1);
`);

// Calling the runInThisContext from script module
script.runInThisContext();

//Creating the cached data along with caching the variable
const cacheWithx = script.createCachedData();
console.log(cacheWithx);
ক্যাশ করার সাথে ক্যাশে করা ডেটা তৈরি করা

আউটপুট

C:\home\node>> node createCachedData.js
<Buffer b5 03 de c0 8a f4 d4 f4 3d 00 00 00 ff 03 00 00 d5 a2 f5 b7 06 00 00
00 00 00 00 00 00 03 00 00 15 80 fd 5d 69 21 3a a9 00 00 00 80 20 00 00 80 38
04 ... >

  1. Node.js-এ crypto.getHashes() পদ্ধতি

  2. Node.js এ process.env() পদ্ধতি

  3. Node.js এ process.argv0() পদ্ধতি

  4. Node.js এ process.argv() পদ্ধতি