CN109144503B - Method, device and equipment for storing data through Redox and readable storage medium - Google Patents

Method, device and equipment for storing data through Redox and readable storage medium Download PDF

Info

Publication number
CN109144503B
CN109144503B CN201810995417.4A CN201810995417A CN109144503B CN 109144503 B CN109144503 B CN 109144503B CN 201810995417 A CN201810995417 A CN 201810995417A CN 109144503 B CN109144503 B CN 109144503B
Authority
CN
China
Prior art keywords
component
state data
redox
page
redux
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201810995417.4A
Other languages
Chinese (zh)
Other versions
CN109144503A (en
Inventor
弓晓东
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Beijing Chengshi Wanglin Information Technology Co Ltd
Original Assignee
Beijing Chengshi Wanglin Information Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Beijing Chengshi Wanglin Information Technology Co Ltd filed Critical Beijing Chengshi Wanglin Information Technology Co Ltd
Priority to CN201810995417.4A priority Critical patent/CN109144503B/en
Publication of CN109144503A publication Critical patent/CN109144503A/en
Application granted granted Critical
Publication of CN109144503B publication Critical patent/CN109144503B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/36Software reuse

Abstract

The invention introduces a method, a device, equipment and a readable storage medium for storing data through Redox, wherein the method comprises the following steps: when the operation of a user on the component is detected, the component judges whether state data corresponding to the operation exists in Redox or not; in the case that the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from a network; the component generates a corresponding index according to the operation and the page calling of the component; and the component stores the state data acquired from the network and the index into a key corresponding to the component in Redox. The invention solves the problems that the components can not be completely reused and the state data can not be managed by the components after the components are reused.

Description

Method, device and equipment for storing data through Redox and readable storage medium
Technical Field
The invention relates to the technical field of computers, in particular to a method, a device and equipment for storing data through Redox and a readable storage medium.
Background
When a page is developed using fact, a situation that one component is multiplexed by a plurality of pages occurs, and at this time, state data of the component in each page needs to be stored. The control of the state data can be realized by Redox, however, Redox is similar to a single case, the whole state has only one copy, only the final state data can be stored, and the previous state data can be overwritten.
Furthermore, in the prior art, the business coupling of pages and components; the component requests the state data through the page, the state data is stored in Redox, and the later component acquires the state data from the Redox through the page for rendering by the component. Therefore, in the related art, there is a problem that the state data cannot be managed by the component itself.
Disclosure of Invention
The embodiment of the invention mainly aims to provide a method, a device, equipment and a readable storage medium for storing data through Redox, and solves the problems that components cannot be completely multiplexed and state data cannot be managed through the components after the components are multiplexed.
To achieve the above object, an embodiment of the present invention provides a method for storing data by reduce, where the method includes:
when the operation of a user on the component is detected, the component judges whether state data corresponding to the operation exists in Redox or not;
in the case that the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from a network;
the component generates a corresponding index according to the operation and the page calling of the component;
and the component stores the state data acquired from the network and the index into a key corresponding to the component in Redox.
Optionally, the method further includes:
and under the condition that the state data corresponding to the operation exists in Redux, acquiring the state data corresponding to the operation from Redux, and rendering in the page according to the state data.
Optionally, after the component stores the state data and the index acquired from the network into a key corresponding to the component in reduce, the method further includes:
and the component acquires the stored state data from the key and renders in the page according to the state data.
Optionally, the generating, by the component, a corresponding index according to the operation and the page calling the component includes:
the component acquires a Uniform Resource Locator (URL) of the page and generates a corresponding hash value by using a hash algorithm according to the URL and the generated random value;
the component determines the type value of the control corresponding to the operation according to a preset type table;
and the component generates a corresponding index according to the hash value and the type value.
Optionally, the method further includes:
and the component periodically clears the stored indexes and the corresponding state data in the key according to the set time.
In addition, to achieve the above object, an embodiment of the present invention further provides an apparatus for storing data by reduce, where the apparatus includes:
the device comprises a judging module, a judging module and a judging module, wherein the judging module is used for judging whether state data corresponding to the operation exists in Redox or not when the operation of a user on the component is detected;
the obtaining module is used for obtaining the state data corresponding to the operation from the network under the condition that the state data corresponding to the operation does not exist in Redox;
the generating module is used for generating a corresponding index by the component according to the operation and the page for calling the component;
and the storage module is used for storing the state data acquired from the network and the index into the key corresponding to the component in Redux by the component.
Optionally, the generating module is specifically configured to:
the component acquires a Uniform Resource Locator (URL) of the page and generates a corresponding hash value by using a hash algorithm according to the URL and the generated random value;
the component determines the type value of the control corresponding to the operation according to a preset type table;
and the component generates a corresponding index according to the hash value and the type value.
Optionally, the apparatus further comprises:
and the clearing module is used for the component to clear the stored indexes and the corresponding state data in the key periodically according to the set time.
In addition, to achieve the above object, an embodiment of the present invention further provides an apparatus for storing data by reduce, where the apparatus includes: a processor, a memory, and a communication bus;
the communication bus is used for realizing connection communication between the processor and the memory;
the processor is configured to execute the program for storing data by Redox stored in the memory to implement the above-described steps of the method for storing data by Redox.
In addition, to achieve the above object, an embodiment of the present invention further provides a computer-readable storage medium storing a program for storing data by reduce;
when executed by at least one processor, cause the at least one processor to perform the steps of the method for storing data by Redox as described above.
According to the method, the device and the equipment for storing data through Redox and the readable storage medium, provided by the embodiment of the invention, a plurality of state data of a plurality of pages can be stored through Redox; the components can be completely multiplexed, and the multiplexed state data cannot be replaced, so that the component multiplexing in the true sense is achieved. In addition, the business of the page and the component is decoupled, and the state data of the component is directly managed through the component.
Drawings
FIG. 1 is a flow chart of a method of storing data by Redox according to a first embodiment of the present invention;
FIG. 2 is a schematic view of a screening assembly in a first embodiment of the present invention;
FIG. 3 is a schematic diagram of a page on which a screening component is located in a first embodiment of the present invention;
FIG. 4 is a schematic diagram of a page on which a screening component is located in a first embodiment of the present invention;
FIG. 5 is a schematic diagram of a storage mode in the first embodiment of the present invention;
FIG. 6 is a flow chart of a method of storing data by Redox according to a second embodiment of the present invention;
FIG. 7 is a flow chart of a method of storing data by Redox according to a third embodiment of the present invention;
FIG. 8 is a schematic diagram illustrating the structure of an apparatus for storing data by Redox according to a fourth embodiment of the present invention;
fig. 9 is a schematic diagram of a configuration of an apparatus for storing data by reduce according to a fifth embodiment of the present invention.
Detailed Description
To further illustrate the technical means and effects of the embodiments of the present invention for achieving the intended purpose, the embodiments of the present invention will be described in detail below with reference to the accompanying drawings and preferred embodiments.
A first embodiment of the present invention provides a method for storing data by reduce, as shown in fig. 1, the method specifically includes the following steps:
step S101: when the operation of a user on the component is detected, the component judges whether state data corresponding to the operation exists in Redox or not;
step S102: in the case that the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from a network;
step S103: the component generates a corresponding index according to the operation and the page calling of the component;
step S104: and the component stores the state data acquired from the network and the index into a key corresponding to the component in Redox.
Specifically, before step S101, the method further includes:
setting a key corresponding to the component in Redux, and storing each state data of each page calling the component through the key.
In the prior art, Redox is a JavaScript framework that provides a predictable state container for an application. And aiming at one component, respectively setting a plurality of keys corresponding to the pages for calling the component in Redox, and storing the final state data of the component in the corresponding page through the keys of each page. In the embodiment of the invention, for one component, a key corresponding to the component is set in Redox, and each piece of state data of each page calling the component is stored through the key.
Further, the operations of the user on the component include: user operations on the controls of the component.
For example, as shown in FIG. 2, a schematic diagram of a filter component is shown, the filter component comprising four controls: terminal user, terminal identity, terminal branch and terminal version. Each control contains multiple filter items, and the filter items are cascading filters. The component needs to store the state data corresponding to each filter item so that when a user selects one filter item, the state data corresponding to that filter item can be loaded and rendered in the page. However, when Redux is used, the prior art has the following problems because Redux is a single case: 1) because only one interface is provided for cascade screening, when a user needs to select different screening items, network requests are required, however, Redox can only store the state data corresponding to the screening item selected last time, and can not retain the state data corresponding to the screening item selected before, so that rendering can be performed only according to the state data corresponding to the screening item selected last time in a page; for example, the last time the user selected 8.7.0 from the terminal version control, the key in Redox stores the content of version 8.7.0; 2) when the user returns to the page shown in fig. 3 after performing the filtering on the page shown in fig. 4, the filtering on the page shown in fig. 3 is contaminated by the data shown in fig. 4, and all the filtered data on the page shown in fig. 3 cannot be recorded.
In order to solve the above problems in the prior art, the state data stored in the reduce according to the embodiments of the present invention does not use an overlay method, but uses an additional storage method as shown in fig. 5, and stores the state data requested from the network each time in the reduce. To distinguish the individual state data, a corresponding index is added to each state data. The index is generated according to a page calling the component and a user operation on the component. For example, in the filtering component shown in fig. 2, if the user's operation is: and selecting the debug from the screening items of the terminal branch control, generating an index according to the debug and the page calling the component, and storing the state data corresponding to the debug requested from the network and the index into Redox. When the user selects debug from the terminal branch control again, the corresponding state data can be directly found from Redux, and loading and rendering are performed.
A second embodiment of the present invention provides a method for storing data by reduce, as shown in fig. 6, where the method specifically includes the following steps:
step S601: when an operation of a user on a component is detected, the component determines whether or not state data corresponding to the operation exists in Redox.
If yes, go to step S602; if not, go to step S603.
Specifically, before step S601, the method further includes:
setting a key corresponding to the component in Redux, and storing each state data of each page calling the component through the key.
In the prior art, Redox is a JavaScript framework that provides a predictable state container for an application. And aiming at one component, respectively setting a plurality of keys corresponding to the pages for calling the component in Redox, and storing the final state data of the component in the corresponding page through the keys of each page. In the embodiment of the invention, for one component, a key corresponding to the component is set in Redox, and each piece of state data of each page calling the component is stored through the key.
Further, the component determines whether state data corresponding to the operation exists in Redox, comprising:
the component determines a key corresponding to the component from Redux and judges whether state data corresponding to the operation exists in the key.
Step S602: and under the condition that the state data corresponding to the operation exists in Redux, the component acquires the state data corresponding to the operation from Redux and renders in the page according to the state data.
Step S603: in a case where the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from the network.
Compared with the prior art, in the embodiment of the invention, the state data of each network request of each page of the calling component can be stored through Redux, and when the state data returns to the page again, the state data can be directly acquired from Redux without being acquired from the network.
Step S604: and the component generates a corresponding index according to the operation and the page calling of the component.
Step S605: and the component stores the state data acquired from the network and the index into a key corresponding to the component in Redox.
Step S606: and the component acquires the stored state data from the key and renders in the page according to the state data.
The state data stored in Redox in the embodiment of the present invention no longer uses an overlay manner, but uses an additional storage manner to store the state data requested from the network each time into Redox as shown in FIG. 5. To distinguish the individual state data, a corresponding index is added to each state data. The index is generated according to a page calling the component and a user operation on the component. For example, in the filtering component shown in fig. 2, if the user's operation is: and selecting the debug from the screening items of the terminal branch control, generating an index according to the debug and the page calling the component, and storing the state data corresponding to the debug requested from the network and the index into Redox. When the user selects debug from the terminal branch control again, the corresponding state data can be directly found from Redux, and loading and rendering are performed.
A third embodiment of the present invention provides a method for storing data by reduce, as shown in fig. 7, the method specifically includes the following steps:
step S701: when an operation of a user on a component is detected, the component determines whether or not state data corresponding to the operation exists in Redox.
If yes, go to step S702; if not, go to step S703.
Specifically, before step S701, the method further includes:
setting a key corresponding to the component in Redux, and storing each state data of each page calling the component through the key.
In the prior art, Redox is a JavaScript framework that provides a predictable state container for an application. And aiming at one component, respectively setting a plurality of keys corresponding to the pages for calling the component in Redox, and storing the final state data of the component in the corresponding page through the keys of each page. In the embodiment of the invention, for one component, a key corresponding to the component is set in Redox, and each piece of state data of each page calling the component is stored through the key.
Further, the component determines whether state data corresponding to the operation exists in Redox, comprising:
the component determines a key corresponding to the component from Redux and judges whether state data corresponding to the operation exists in the key.
Step S702: and under the condition that the state data corresponding to the operation exists in Redux, the component acquires the state data corresponding to the operation from Redux and renders in the page according to the state data.
Step S703: in a case where the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from the network.
Step S704: the component obtains a URL (Uniform Resource Locator) of the page, and generates a corresponding hash value by using a hash algorithm according to the URL and the generated random value.
Specifically, the random value may be the current time, or may be the number of times the page is opened. The purpose of adding a random value is to distinguish the case where one page is used multiple times.
Preferably, a random value is automatically added after the URL by the React Router.
Step S705: and the component determines the type value of the control corresponding to the operation according to a preset type table.
In particular, the type value is an identification, such as in FIG. 2, the type value is an identification of a sub-screen option. Such as an imei filter option, whose type value is type _ imei. The type value for each filter option is defined before use.
Step S706: and the component generates a corresponding index according to the hash value and the type value.
Step S707: and the component stores the state data acquired from the network and the index into a key corresponding to the component in Redox.
Further, the method further comprises:
and the component periodically clears the stored indexes and the corresponding state data in the key according to the set time.
For example, each page allows only a set amount of state data to be stored; or the state data is cleared according to the storage time.
The state data stored in Redox in the embodiment of the present invention no longer uses an overlay manner, but uses an additional storage manner to store the state data requested from the network each time into Redox as shown in FIG. 5. To distinguish the individual state data, a corresponding index is added to each state data. The index is generated according to a page calling the component and a user operation on the component. For example, in the filtering component shown in fig. 2, if the user's operation is: and selecting the debug from the screening items of the terminal branch control, generating an index according to the debug and the page calling the component, and storing the state data corresponding to the debug requested from the network and the index into Redox. When the user selects debug from the terminal branch control again, the corresponding state data can be directly found from Redux, and loading and rendering are performed.
A fourth embodiment of the present invention provides an apparatus for storing data by reduce, as shown in fig. 8, the apparatus specifically includes the following components:
a determining module 801, configured to, when an operation of a user on a component is detected, determine whether state data corresponding to the operation exists in Redox;
an obtaining module 802, configured to, in a case that the state data corresponding to the operation does not exist in the reduce, the component obtains the state data corresponding to the operation from the network;
a generating module 803, configured to generate a corresponding index according to the operation and the page where the component is called;
the storage module 804 is configured to store, by the component, the state data and the index acquired from the network into a key corresponding to the component in reduce.
Further, the obtaining module 802 is further configured to:
and under the condition that the state data corresponding to the operation exists in Redux, acquiring the state data corresponding to the operation from Redux, and rendering in the page according to the state data.
Further, the apparatus further comprises:
and the rendering module is used for storing the state data acquired from the network and the index into a key corresponding to the component in Redox by the component, acquiring the stored state data from the key by the component, and rendering in the page according to the state data.
Further, the generating module 803 is specifically configured to:
the component acquires a Uniform Resource Locator (URL) of the page and generates a corresponding hash value by using a hash algorithm according to the URL and the generated random value;
the component determines the type value of the control corresponding to the operation according to a preset type table;
and the component generates a corresponding index according to the hash value and the type value.
Still further, the apparatus further comprises:
and the clearing module is used for the component to clear the stored indexes and the corresponding state data in the key periodically according to the set time.
A fifth embodiment of the present invention provides an apparatus for storing data by reduce, as shown in fig. 9, the apparatus including: a processor 901, a memory 902, and a communication bus;
the communication bus is used for realizing connection communication between the processor 901 and the memory 902;
the processor 901 is configured to execute a program stored in the memory 902 for storing data by Redox to implement the following steps:
when the operation of a user on the component is detected, the component judges whether state data corresponding to the operation exists in Redox or not;
in the case that the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from a network;
the component generates a corresponding index according to the operation and the page calling of the component;
and the component stores the state data acquired from the network and the index into a key corresponding to the component in Redox.
A sixth embodiment of the present invention proposes a computer-readable storage medium storing a program for storing data by Redox;
when executed by at least one processor, the program for storing data by Redox causes the at least one processor to perform the steps of:
when the operation of a user on the component is detected, the component judges whether state data corresponding to the operation exists in Redox or not;
in the case that the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from a network;
the component generates a corresponding index according to the operation and the page calling of the component;
and the component stores the state data acquired from the network and the index into a key corresponding to the component in Redox.
According to the method, the device and the equipment for storing data through Redox and the readable storage medium, which are introduced in the embodiment of the invention, a plurality of state data of a plurality of pages can be stored through Redox; the components can be completely multiplexed, and the multiplexed state data cannot be replaced, so that the component multiplexing in the true sense is achieved. In addition, the business of the page and the component is decoupled, and the state data of the component is directly managed through the component.
While the embodiments of the present invention have been described in terms of specific embodiments, it is to be understood that both the foregoing general description and the following detailed description are intended to provide further explanation and understanding of the invention as claimed.

Claims (6)

1. A method for storing data via Redux, the method comprising:
when the operation of a user on the component is detected, the component judges whether state data corresponding to the operation exists in Redox or not;
under the condition that the state data corresponding to the operation exists in Redux, acquiring the state data corresponding to the operation from Redux, and rendering in a page according to the state data;
in the case that the state data corresponding to the operation does not exist in Redux, the component acquires the state data corresponding to the operation from a network;
the component generates a corresponding index according to the operation and the page calling the component, and the method comprises the following steps:
the component acquires a Uniform Resource Locator (URL) of the page and generates a corresponding hash value by using a hash algorithm according to the URL and the generated random value;
the component determines the type value of the control corresponding to the operation according to a preset type table;
the component generates a corresponding index according to the hash value and the type value;
the component stores the state data and the index acquired from the network into a key corresponding to the component in Redox;
and the component acquires the stored state data from the key and renders in the page according to the state data.
2. The method of claim 1, further comprising:
and the component periodically clears the stored indexes and the corresponding state data in the key according to the set time.
3. An apparatus for storing data via Redox, the apparatus comprising:
the device comprises a judging module, a judging module and a judging module, wherein the judging module is used for judging whether state data corresponding to the operation exists in Redox or not when the operation of a user on the component is detected;
under the condition that the state data corresponding to the operation exists in Redux, acquiring the state data corresponding to the operation from Redux, and rendering in a page according to the state data;
the obtaining module is used for obtaining the state data corresponding to the operation from the network under the condition that the state data corresponding to the operation does not exist in Redox;
the generating module is used for generating a corresponding index by the component according to the operation and the page for calling the component;
the storage module is used for storing the state data and the index acquired from the network into a key corresponding to the component in Redox by the component;
the component acquires the stored state data from the key and renders in the page according to the state data;
the generation module is specifically configured to:
the component acquires a Uniform Resource Locator (URL) of the page and generates a corresponding hash value by using a hash algorithm according to the URL and the generated random value;
the component determines the type value of the control corresponding to the operation according to a preset type table;
and the component generates a corresponding index according to the hash value and the type value.
4. The apparatus of claim 3, further comprising:
and the clearing module is used for the component to clear the stored indexes and the corresponding state data in the key periodically according to the set time.
5. An apparatus for storing data via Redox, the apparatus comprising: a processor, a memory, and a communication bus;
the communication bus is used for realizing connection communication between the processor and the memory;
the processor is configured to execute a program for storing data by Redox stored in the memory to implement the steps of the method for storing data by Redox of any of claims 1 to 2.
6. A computer-readable storage medium characterized in that the computer-readable storage medium stores a program for storing data by Redox;
the program for Redox storage of data, when executed by at least one processor, causes the at least one processor to perform the steps of the method for Redox storage of data of any of claims 1 to 2.
CN201810995417.4A 2018-08-29 2018-08-29 Method, device and equipment for storing data through Redox and readable storage medium Active CN109144503B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201810995417.4A CN109144503B (en) 2018-08-29 2018-08-29 Method, device and equipment for storing data through Redox and readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201810995417.4A CN109144503B (en) 2018-08-29 2018-08-29 Method, device and equipment for storing data through Redox and readable storage medium

Publications (2)

Publication Number Publication Date
CN109144503A CN109144503A (en) 2019-01-04
CN109144503B true CN109144503B (en) 2021-11-23

Family

ID=64829065

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201810995417.4A Active CN109144503B (en) 2018-08-29 2018-08-29 Method, device and equipment for storing data through Redox and readable storage medium

Country Status (1)

Country Link
CN (1) CN109144503B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112416410A (en) * 2020-12-09 2021-02-26 北京顺达同行科技有限公司 Data management method and device for small program, computer equipment and storage medium

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107544806A (en) * 2017-09-04 2018-01-05 江苏中威科技软件系统有限公司 Visualize list method for drafting
CN107908398A (en) * 2017-11-08 2018-04-13 四川长虹电器股份有限公司 Method based on React technique constructions web applications

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8738653B2 (en) * 2010-07-12 2014-05-27 Brand Affinity Technologies, Inc. Apparatus, system and method for disambiguating a request for a media enhancement
CN104715064B (en) * 2015-03-31 2018-11-02 北京奇虎科技有限公司 It is a kind of to realize the method and server that keyword is marked on webpage
CN105955785B (en) * 2016-05-12 2019-01-29 武汉斗鱼网络科技有限公司 The realization method and system of host state is safeguarded in a kind of multipad
CN106250128B (en) * 2016-07-26 2019-12-10 网易(杭州)网络有限公司 Display processing method and device of user interface
CN107330053A (en) * 2017-06-27 2017-11-07 北京天机数测数据科技有限公司 The visual design device and data large-size screen monitors preparation method based on ReactJS

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107544806A (en) * 2017-09-04 2018-01-05 江苏中威科技软件系统有限公司 Visualize list method for drafting
CN107908398A (en) * 2017-11-08 2018-04-13 四川长虹电器股份有限公司 Method based on React technique constructions web applications

Also Published As

Publication number Publication date
CN109144503A (en) 2019-01-04

Similar Documents

Publication Publication Date Title
US7698318B2 (en) Automatically determining file replication mechanisms
KR101605156B1 (en) Device, method, and computer for providing file deleting service
CN103914439A (en) Method, device and system for online document edition
CN110262872B (en) Load balancing application management method and device, computer equipment and storage medium
CN107526755B (en) Data processing method and device
US20160110324A1 (en) Compression of cascading style sheet files
CN111818175B (en) Enterprise service bus configuration file generation method, device, equipment and storage medium
CN109144503B (en) Method, device and equipment for storing data through Redox and readable storage medium
CN107590162A (en) The storage method and device of journal file
CN108363727B (en) Data storage method and device based on ZFS file system
CN107977410B (en) Bookshelf management method based on electronic book application and electronic equipment
CN109756527B (en) Data sharing method, device and system
US10055407B2 (en) Maintaining access control lists in non-identity-preserving replicated data repositories
CN106528876A (en) Information processing method for distributed system and distributed information processing system
CN110888840A (en) File query method, device, equipment and medium in distributed file system
Rondi A Friedrichs–Maz'ya inequality for functions of bounded variation
US9323197B2 (en) History storage device, image forming apparatus and non-transitory computer readable medium storing program
CN112230854A (en) Method, system, device and medium for managing storage space
US20160026390A1 (en) Method of deleting information, computer program product and computer system
JP5467032B2 (en) Information management system and its data update operation method
CN110109883B (en) File filtering and storing method and device
CN109299067A (en) Page access method, apparatus and storage medium
CN111104787B (en) Method, apparatus and computer program product for comparing files
CN111131205B (en) Authority management method and device based on Restful interface
CN116132109A (en) Display method of multi-tenant content management platform fonts for paper media units

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant