Sponsored Content
Full Discussion: about extended memory
Top Forums Programming about extended memory Post 11272 by shaik786 on Saturday 1st of December 2001 12:20:27 AM
Old 12-01-2001
Its your [Base Memory + Extended Memory]
shaik786
 

10 More Discussions You Might Find Interesting

1. Programming

Extended ascii

Hi all, I would like to change the extended ascii code ( 128 - 255). I tried to change LC_ALL and LANG in current session ( values from locale -a) and for no good. Thanks. (0 Replies)
Discussion started by: avis
0 Replies

2. Shell Programming and Scripting

extended ascii problem

hi i would like to check text files if they contain extended ascii characters within or not. i really dont have any idea how to start your kind help would be very much appreciated thanks. (7 Replies)
Discussion started by: smooth
7 Replies

3. Shell Programming and Scripting

extended characters in UNIX

Hi Guys, I am using db2 load to load from a csv file to a table. Problem is that extended characters ™,®,é,º do not get loaded correctly. Its a UTF 8 format csv and i am using codepage=1208 for the load. Does anybody have an idea on this? Thanks (2 Replies)
Discussion started by: lifzgud
2 Replies

4. Post Here to Contact Site Administrators and Moderators

Extended man pages

Hi, Any chance we could have an input pane in the forums that targets a man page and whose content is output to the bottom of the man page in this way forming extended man pages with additional know how? Thanks, Steve (9 Replies)
Discussion started by: spaesani
9 Replies

5. Shell Programming and Scripting

need help with extended test command

Hi All, I have a very simple task to do. I want test a string with regex pattern. Here's the script I want to use: #!/bin/bash x=B10 if {2} ]]; then echo match else echo no match fiThe output is: check.sh: 9: My bash is: version 4.0.33(1)-release (i486-pc-linux-gnu) What am I... (3 Replies)
Discussion started by: sumi76
3 Replies

6. UNIX for Dummies Questions & Answers

mount extended partition

Hello, Im new here, and may be my question is stupid, but... Today I run PGP Desktop decript on my 2nd partition ( D:\ ) and when decript finish, I restart my PC.Now when I try to open D:\ its give me: D:\ is not accessable and I lose my files :( So I load Linux live CD ( knoppix ) and try to... (1 Reply)
Discussion started by: mrowcp
1 Replies

7. AIX

Printing extended ASCII

Hi All, I'm trying to send extended ascii characters to my HP2055 as part of PCL printer control codes. What I want to do is select a bar code font, print the bar code and reset the printer to the default font. Selecting the bar code font works good. Printing the bar code goes almost ok too. ... (5 Replies)
Discussion started by: petervg
5 Replies

8. Solaris

How to mount extended partation?

hi, i have created an extended partition during solaris 11 installation. My question is how this extended partition is mounted , so that i can use this partition for my work. Thanks (2 Replies)
Discussion started by: zeeshan047
2 Replies

9. Shell Programming and Scripting

Autosys - Extended Calendar

Does anyone know if you can create an Extended Calendar in Autosys that will do the following...Schedule on the last business day of the month, but if the last business day falls on a Mon-Thur...schedule on the next business day (1st of the next month) ? (1 Reply)
Discussion started by: amarq0004
1 Replies

10. UNIX for Advanced & Expert Users

Extended vs vintage

I am having issues with the MOS (my oracle support) page. I downloaded the new critical patch and oct patchset. for solaris 10 64. However, I noticed that that the Entitlement class read vintage instead of extended in which we bought the service. can anyone tell me the difference? it is safe... (0 Replies)
Discussion started by: goya
0 Replies
KiokuDB::Backend::Role::TXN::Memory(3pm)		User Contributed Perl Documentation		  KiokuDB::Backend::Role::TXN::Memory(3pm)

NAME
KiokuDB::Backend::Role::TXN::Memory - In memory transactions. SYNOPSIS
with qw(KiokuDB::Backend::Role::TXN::Memory); sub commit_entries { my ( $self, @entries ) = @_; # atomically apply @entries # deleted entries have the deleted flag set # if an entry has no 'prev' entry it's an insert # otherwise it's an update } DESCRIPTION
This backend provides in memory transactions for backends which support atomic modification of data, but not full commit/rollback support. This backend works by buffering all operations in memory. Entries are kept alive allowing read operations go to the live entry even for objects that are out of scope. This implementation provides repeatable read level isolation. Durability, concurrency and atomicity are still the responsibility of the backend. REQUIRED METHODS
commit_entries Insert, update or delete entries as specified. This operation should either fail or succeed atomically. Entries with "deleted" should be removed from the database, entries with a "prev" entry should be inserted, and all other entries should be updated. Multiple entries may be given for a single object, for instance an object that was first inserted and then modified will have an insert entry and an update entry. get_from_storage Should be the same as "get" in KiokuDB::Backend. When no memory buffered entries are available for the object one is fetched from the backend. exists_in_storage Required as of KiokuDB version 0.37. A fallback implementation is provided, but should not be used and will issue a deprecation warning. perl v5.12.4 2010-10-11 KiokuDB::Backend::Role::TXN::Memory(3pm)
All times are GMT -4. The time now is 08:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy